forked from php-pm/php-pm-httpkernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 712 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 712 Bytes
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
{
"name": "php-pm/httpkernel-adapter",
"description": "PHP-PM adapter for Symfony HTTPKernel.",
"license": "MIT",
"require": {
"php-pm/php-pm": "^2.0",
"symfony/http-foundation": "^4.2.12|^5.0.4|^6.0",
"symfony/http-kernel": "^4.0|^5.1.5|^6.0",
"guzzlehttp/psr7": "^1.5|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^4.1.12|^5.0|^6.0",
"symfony/yaml": "^4.0|^5.0|^6.0",
"doctrine/annotations": "^1.6"
},
"autoload": {
"psr-4": {
"PHPPM\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPPM\\Tests\\": "tests"
}
}
}