-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
86 lines (86 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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|~3.0",
"symfony/console": "~2.8|~3.0",
"symfony/filesystem": "~2.8|~3.0",
"symfony/finder": "~2.8|~3.0",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/security": "~2.8|~3.0",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/yaml": "~2.8|~3.0",
"sensio/framework-extra-bundle": "^3.0.2",
"psr/log": "~1.0",
"twig/twig": "~1.20",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/doctrine-cache-bundle": "~1.3",
"swiftmailer/swiftmailer": "^5.2.1",
"leafo/scssphp": "~0.1",
"league/uri": "~4.0",
"knplabs/knp-time-bundle": "^1.5.2",
"matthiasmullie/minify": "~1.3",
"michelf/php-markdown": "~1.4",
"oyejorge/less.php": "~1.7",
"patchwork/utf8": "~1.2",
"phpspec/php-diff": "~1.0",
"simplepie/simplepie": "~1.3",
"tecnickcom/tcpdf": "~6.0",
"true/punycode": "~1.0",
"contao-components/all": "^5.0.3"
},
"require-dev": {
"composer/composer": "~1.0",
"friendsofphp/php-cs-fixer": "~1.8",
"lexik/maintenance-bundle": "~2.0",
"monolog/monolog": "~1.11",
"phpunit/phpunit": "~4.5",
"satooshi/php-coveralls": "~0.6",
"symfony/phpunit-bridge": "~2.8|~3.0"
},
"suggest": {
"lexik/maintenance-bundle": "To put the application into maintenance mode"
},
"conflict": {
"contao/core": "*"
},
"autoload": {
"psr-4": {
"Contao\\CoreBundle\\": "src/"
},
"classmap": [
"src/Resources/contao"
],
"exclude-from-classmap": [
"src/Resources/contao/config",
"src/Resources/contao/dca",
"src/Resources/contao/helper",
"src/Resources/contao/languages",
"src/Resources/contao/templates",
"src/Resources/contao/themes"
]
},
"autoload-dev": {
"psr-4": {
"Contao\\CoreBundle\\Test\\": "tests/",
"Contao\\TestBundle\\": "tests/Fixtures/vendor/contao/test-bundle/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-develop": "4.3.x-dev"
}
}
}