-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.39 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
{
"name": "ecphp/reverse-proxy-helper-bundle",
"description": "Helper bundle, configure the request headers from a given base URL.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"reverse-proxy",
"headers"
],
"homepage": "http://github.com/ecphp/reverse-proxy-helper-bundle",
"require": {
"php": ">= 7.2.5",
"ext-filter": "*",
"symfony/framework-bundle": "^5.2.4"
},
"require-dev": {
"ecphp/php-conventions": "^1",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"infection/infection": "^0.24",
"infection/phpspec-adapter": "^0.1.1",
"phpspec/phpspec": "^7",
"symfony/http-kernel": "^5.2.4"
},
"autoload": {
"psr-4": {
"EcPhp\\ReverseProxyHelperBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}