-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 973 Bytes
/
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
{
"authors": [
{
"email": "[email protected]",
"name": "Carlo Forghieri"
}
],
"autoload": {
"exclude-from-classmap": [
"/Tests/"
],
"psr-4": {
"Ae\\FeatureBundle\\": ""
}
},
"config": {
"sort-packages": true
},
"description": "Manage release of new features",
"license": "Apache-2.0",
"name": "adespresso/feature-bundle",
"require": {
"php": "^7.1",
"doctrine/orm": "^2.2.3",
"symfony/framework-bundle": "^2.8 || ^3.0",
"symfony/security-core": "^2.8 || ^3.0",
"symfony/twig-bundle": "^2.8 || ^3.0",
"twig/twig": "^1.18"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"matthiasnoback/symfony-dependency-injection-test": "1.1.*",
"phpunit/phpunit": "^5.7",
"symfony/phpunit-bridge": "^4.3"
},
"type": "symfony-bundle"
}