-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.31 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
{
"name": "gyro/mvc-bundle",
"type": "symfony-bundle",
"keywords": ["symfony", "bundle"],
"description": "Various improvements for Symfony applications",
"license": "MIT",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"}
],
"require": {
"symfony/http-kernel": "~4.4|~5.4|~6.4|~7.0",
"psr/container": "^1.1|^2.0",
"composer-runtime-api": "*",
"symfony/polyfill-php80": "^1.31",
"technically/callable-reflection": "^0.4.1"
},
"require-dev": {
"php": "~8.0",
"phake/phake": "^4.2.0",
"phpunit/phpunit": "^9.6|^10.5|^11.4",
"vimeo/psalm": "^5.26|^6.9",
"nikic/php-parser": "^4.4|^5.0",
"symfony/symfony": "~4.4|~5.4|~6.4|~7.0",
"doctrine/coding-standard": "^8.2.1",
"twig/twig": "^1.44|^2.14|^3.1",
"rector/rector": "^2.0"
},
"autoload": {
"psr-0": {
"Gyro\\Bundle\\MVCBundle\\": "src/",
"Gyro\\MVC\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gyro\\Bundle\\MVCBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
}
}