-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
35 lines (35 loc) · 1.1 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
{
"name": "pomm-project/pomm-symfony-bridge",
"type": "library",
"description": "Pomm2 shared elements between Silex and Symfony.",
"keywords": ["silex", "symfony","pomm", "debug", "profiler"],
"homepage": "http://www.pomm-project.org",
"license": "MIT",
"authors": [ { "name": "Grégoire HUBERT", "email": "[email protected]" }, { "name": "Jérôme MACIAS", "email": "[email protected]" } ],
"require": {
"php": ">=7.1",
"pomm-project/foundation": "~2.0",
"symfony/http-foundation": "~4.0|~5.0",
"symfony/http-kernel": "~4.4|~5.0",
"symfony/serializer": "~4.0|~5.0",
"symfony/property-info": "~4.0|~5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.7"
},
"suggest": {
"pomm-project/model-manager": "~2.0",
"pomm-project/cli": "~2.0",
"symfony/symfony": "~4.4|~5.0"
},
"autoload": {
"psr-4": {
"PommProject\\SymfonyBridge\\": "sources/lib"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}