-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.63 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
47
48
49
50
51
52
53
{
"name": "b2pweb/bdf-prime-bundle",
"type": "symfony-bundle",
"description": "Symfony PrimeBundle",
"keywords": ["orm", "active record", "data mapper"],
"license": "MIT",
"authors": [
{
"name": "Sébastien Tanneux"
},
{
"name": "Vincent Quatrevieux"
}
],
"minimum-stability": "dev",
"require": {
"php": "~7.2 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"b2pweb/bdf-prime": "~1.2|~2.0",
"b2pweb/bdf-prime-persistence": "~1.0",
"symfony/config": "^5.1|^6.0|~7.0",
"symfony/dependency-injection": "^5.1|^6.0|~7.0",
"symfony/framework-bundle": "^5.1|^6.0|~7.0",
"doctrine/doctrine-bundle": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0|~8.0|~9.0",
"symfony/phpunit-bridge": "^5.1|^6.0|~7.0",
"symfony/yaml": "^5.1|^6.0|~7.0",
"symfony/console": "^5.1|^6.0|~7.0",
"symfony/web-profiler-bundle": "^5.1|^6.0|~7.0",
"friendsofphp/php-cs-fixer": "~3.0",
"twig/twig": "~3.11"
},
"autoload": {
"psr-4": { "Bdf\\PrimeBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"tests": "phpunit",
"tests-with-coverage": "phpunit --coverage-clover coverage.xml",
"php-cs-fixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff --allow-risky=yes --ansi --dry-run"
},
"extra": {
"branch-alias": {
"dev-master": "1.7-dev"
}
},
"suggest": {
"symfony/web-profiler-bundle": "To use the data collector."
}
}