-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
66 lines (66 loc) · 1.93 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "contao/core-bundle",
"type": "symfony-bundle",
"description": "Contao 4 core bundle",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Leo Feyer",
"homepage": "https://github.com/leofeyer"
}
],
"require": {
"php": ">=5.5.0",
"symfony/framework-bundle": "~2.8",
"symfony/console": "~2.8",
"symfony/filesystem": "~2.8",
"symfony/finder": "~2.8",
"symfony/http-foundation": "~2.8",
"symfony/security": "~2.8",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/yaml": "~2.8",
"sensio/framework-extra-bundle": "^3.0.2",
"twig/twig": "~1.20",
"doctrine/doctrine-bundle": "^1.5.2",
"doctrine/annotations": "^1.2.7",
"doctrine/cache": "^1.3.2",
"doctrine/common": "^2.5.1",
"swiftmailer/swiftmailer": "^5.2.1",
"leafo/scssphp": "~0.1",
"league/uri": "~4.0",
"matthiasmullie/minify": "~1.3",
"michelf/php-markdown": "~1.4",
"oyejorge/less.php": "~1.7",
"paragonie/random_compat": "~1.0",
"patchwork/utf8": "~1.2",
"phpspec/php-diff": "~1.0",
"simplepie/simplepie": "~1.3",
"tecnickcom/tcpdf": "~6.0",
"true/punycode": "~1.0",
"contao-components/all": "^4.1.2"
},
"require-dev": {
"composer/composer": "~1.0",
"fabpot/php-cs-fixer": "~1.8",
"lexik/maintenance-bundle": "~2.0",
"phpunit/phpunit": "~4.5",
"satooshi/php-coveralls": "~0.6",
"symfony/phpunit-bridge": "~2.8"
},
"suggest": {
"lexik/maintenance-bundle": "To put the application into maintenance mode"
},
"conflict": {
"contao/core": "*"
},
"autoload": {
"psr-4": {
"Contao\\CoreBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "4.2.x-dev"
}
}
}