-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
33 lines (33 loc) · 1012 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
{
"name": "xsolve-pl/model-factory-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a versatile skeleton for organizing model factories.",
"keywords": ["rest"],
"homepage": "http://github.com/xsolve-pl/xsolve-model-factory-bundle",
"license": "MIT",
"authors": [
{
"name": "Mariusz Bąk",
"email": "[email protected]",
"homepage": "http://github.com/malef",
"role": "Developer"
}
],
"require": {
"php": "^5.6|^7.0|^8.0",
"symfony/framework-bundle": "^2.3|^3.0|^4.0|^5.0|^6.0",
"xsolve-pl/model-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5|^6.0|^7.0|^8.0|^9.0",
"symfony/phpunit-bridge": "^3.0|^4.0|^5.0",
"sebastian/phpcpd": "^2.0",
"phpmd/phpmd": "^2.4",
"phpspec/prophecy": "^1.16"
},
"autoload":{
"psr-4":{
"Xsolve\\ModelFactoryBundle\\": ""
}
}
}