forked from propelorm/PropelBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 927 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
{
"name": "propel/propel-bundle",
"description": "Integration of Propel in Symfony",
"keywords": ["propel", "orm", "persistence"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [{
"name": "William Durand",
"email": "[email protected]"
}],
"autoload": {
"psr-4": { "Propel\\Bundle\\PropelBundle\\": "" },
"exclude-from-classmap": [ "Tests/" ]
},
"require": {
"propel/propel": "dev-master",
"symfony/console": "^2.8|^3.0|^4.0",
"symfony/dependency-injection": "^2.8|^3.0|^4.0",
"symfony/framework-bundle": "^2.8|^3.0|^4.0",
"symfony/security-acl": "^2.8|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"sensio/framework-extra-bundle": "^4.0",
"symfony/form": "^2.8|^3.0|^4.0",
"fzaninotto/faker": "^1.5",
"mikey179/vfsStream": "^1.6"
}
}