-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.52 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
{
"name": "ajgarlag/psr15-dispatcher",
"description": "Component to dispatch PSR-15 middlewares",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Antonio J. García Lagar",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^7.4",
"friendsofphp/php-cs-fixer": "^3.23",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"autoload": {
"psr-4": {
"Ajgarlag\\Psr15\\Dispatcher\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Ajgarlag\\Psr15\\Dispatcher\\": "./spec"
}
},
"scripts": {
"lint": "@php -d xdebug.mode=off vendor/bin/php-cs-fixer fix --dry-run --ansi -v",
"fix-cs": "@php -d xdebug.mode=off vendor/bin/php-cs-fixer fix --ansi",
"test": [
"@php -d xdebug.mode=off vendor/bin/phpstan analyse --ansi -l 9 src ",
"@php -d xdebug.mode=off vendor/bin/phpspec run --ansi"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}