forked from liuggio/godfather
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 970 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
{
"name": "pugx/godfather",
"description": "Strategy pattern component as library and symfony2 bundle",
"keywords": ["Strategy Pattern", "library", "bundle"],
"homepage": "http://github.com/liuggio/godfather",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giulio De Donato",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/framework-bundle": "~2.4",
"symfony/dependency-injection": "~2.4"
},
"autoload": {
"psr-0": { "PUGX": ["sf2-bundle", "lib"] }
},
"config": {
"bin-dir": "bin",
"discard-changes": true
},
"suggest": {
"symfony/dependency-injection": "if you want to use a proper dependency injection"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}