forked from propelorm/PropelBundle
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
46 lines (46 loc) · 1.43 KB
/
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
39
40
41
42
43
44
45
46
{
"name": "skyfox/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": ">=8.0.2",
"propel/propel": "2.0.0-beta2||2.0.0-beta3||2.0.0-beta4",
"symfony/console": "^5.0||^6.0||^7.0",
"symfony/dependency-injection": "^6.0||^7.0",
"symfony/framework-bundle": "^6.0||^7.0",
"symfony/security-bundle": "^6.0||^7.0",
"symfony/yaml": "^5.0||^6.0||^7.0"
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"ext-pdo": "*",
"phpunit/phpunit": "*",
"sensio/framework-extra-bundle": "^6.0",
"symfony/form": "^6.0",
"fakerphp/faker": "*",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.2",
"twig/twig": "*",
"symfony/stopwatch": "^5.4"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}