-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 955 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
38
{
"name": "pugx/model-type-bundle",
"description": "Symfony bundle for generic model type",
"keywords": ["symfony", "bundle", "form", "type", "ddd", "rich domain"],
"homepage": "http://pugx.org/",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
},
{
"name": "The Community",
"homepage": "https://github.com/pugx/modeltypebundle"
}
],
"support": {
"issues": "https://github.com/pugx/modeltypebundle/issues"
},
"require": {
"symfony/symfony": "^2.8|^3.1"
},
"require-dev":{
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": { "PUGX\\ModelTypeBundle\\": "src" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}