forked from BatchLabs/headers-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 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
{
"name": "batch.com/headers-bundle",
"description": "A Symfony bundle to easily add headers to your responses.",
"type": "symfony-bundle",
"require": {
"php": "^7.2",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/config": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"psr/cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"php-parallel-lint/php-parallel-lint": "^1.2",
"slevomat/coding-standard": "^6.4",
"phpstan/phpstan": "^0.12.48",
"phpstan/phpstan-deprecation-rules": "^0.12.5",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpstan/phpstan-webmozart-assert": "^0.12.7",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12.1"
},
"autoload": {
"psr-4": {
"Batch\\HeadersBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Batch\\HeadersBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Johann Pardanaud",
"email": "johann@batch.com"
}
]
}