-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.35 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
{
"name": "developtech/agility-bundle",
"description": "Bundle implementing agile project management features in your project",
"type": "symfony-bundle",
"keywords": ["agility", "project-management"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Axel Venet",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=5.5",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/twig-bundle": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/security-bundle": "~2.3|~3.0",
"symfony/debug-bundle": "~2.3|~3.0",
"symfony/web-profiler-bundle": "~2.3|~3.0",
"sensio/distribution-bundle": "^5.0",
"sensio/generator-bundle": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0",
"sensio/framework-extra-bundle": "~2.3|~3.0"
},
"require-dev": {
"doctrine/orm": "~2.3",
"doctrine/doctrine-bundle": "~1.1",
"symfony/phpunit-bridge": "~2.7|~3.0",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"liip/functional-test-bundle": "dev-master"
},
"autoload": {
"psr-4": { "Developtech\\AgilityBundle\\": "./" }
}
}