forked from SkyFoxvn/PropelBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 1019 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
{
"name": "yardinternet/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\\": "" },
"classmap": ["AppBundle.php"],
"exclude-from-classmap": [ "Tests/" ]
},
"require": {
"php": ">=7.4.0",
"propel/propel": "2.0.0-beta1",
"symfony/console": "^2.8|^3.0|^4.0|^5.0",
"symfony/dependency-injection": "^2.8|^3.0|^4.0|^5.0",
"symfony/framework-bundle": "^2.8|^3.0|^4.0|^5.0",
"symfony/security-bundle": "^4.0|^5.0|^5.1"
},
"require-dev": {
"phpunit/phpunit": "*",
"sensio/framework-extra-bundle": "^4.0|^5.0",
"symfony/form": "^2.8|^3.0|^4.0|^5.0",
"fakerphp/faker": "*",
"mikey179/vfsstream": "^1.6"
}
}