-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.44 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
53
54
55
56
57
58
59
60
{
"name": "noglitchyo/symfony-middleware-bundle",
"description": "Introduce PSR-15 middleware collection dispatcher into Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"http",
"psr-15",
"psr-7",
"http-message",
"middleware",
"handler",
"bridge",
"dispatcher",
"stack",
"symfony"
],
"require": {
"php": ">=7.3",
"psr/http-server-middleware": "^1.0.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/event-dispatcher": "^4.3",
"symfony/psr-http-message-bridge": "^1.2",
"symfony/http-kernel": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/config": "^4.3",
"noglitchyo/middleware-collection-request-handler": "*"
},
"provide": {
"psr/http-server-handler-implementation": "1.0",
"psr/http-server-middleware-implementation": "1.0"
},
"authors": [
{
"name": "Maxime ELOMARI",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NoGlitchYo\\MiddlewareBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NoGlitchYo\\MiddlewareBundle\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse -l max src",
"phpcs": "phpcs --standard=PSR2 ./src",
"test": "phpunit -c phpunit.xml.dist"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^0.11.8",
"nyholm/psr7": "^1.1"
}
}