-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1010 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
{
"name": "acseo/fast-show-generator-bundle",
"type": "symfony-bundle",
"description": "A bundle to quickly generate show actions based on annotation or yaml",
"keywords": ["Symfony", "show", "generate"],
"homepage": "https://github.com/acseo/FastShowGeneratorBundle",
"authors": [
{
"name": "Nicolas Kern",
"email": "[email protected]"
},
{
"name": "Nicolas Potier",
"email": "[email protected]"
}
],
"require": {
"doctrine/annotations": "^2.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/yaml": "^5.0"
},
"autoload": {
"psr-0": { "ACSEO\\FastShowGeneratorBundle": "" }
},
"target-dir": "ACSEO/FastShowGeneratorBundle",
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}