-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.64 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
46
47
48
49
50
51
52
{
"name": "loophp/unaltered-psr-http-message-bridge-bundle",
"description": "A drop-in replacement for symfony/psr-http-message-bridge, that does not alter query parameters.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"http",
"psr-7",
"psr-17",
"http-message"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"homepage": "http://github.com/loophp/unaltered-psr-http-message-bridge-bundle",
"require": {
"php": ">= 7.3",
"league/uri-components": "^2.4",
"loophp/psr-http-message-bridge-bundle": "^1.0"
},
"require-dev": {
"drupol/php-conventions": "^6",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.2.0",
"nyholm/psr7": "^1",
"phpspec/phpspec": "^7.1",
"symfony/http-kernel": "^6.0.0"
},
"autoload": {
"psr-4": {
"loophp\\UnalteredPsrHttpMessageBridgeBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"changelog-unreleased": "docker-compose run auto_changelog -c .auto-changelog -u",
"changelog-version": "docker-compose run auto_changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}