-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
37 lines (37 loc) · 988 Bytes
/
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
{
"name": "pmjones/auto-route",
"type": "library",
"description": "Automatically routes HTTP request to action classes.",
"keywords": [ "route", "router", "routing", "action", "adr" ],
"homepage": "http://github.com/pmjones/auto-route",
"license": "MIT",
"require": {
"php": "^8.0",
"psr/log": "^3.0",
"pmjones/throwable-properties": "^1.0"
},
"autoload": {
"psr-4": {
"AutoRoute\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AutoRoute\\": "tests/"
}
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.82"
},
"bin": [
"bin/autoroute-dump.php",
"bin/autoroute-create.php"
],
"scripts": {
"test": "./vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan analyze -c phpstan.neon src",
"testan": "composer test && composer stan"
}
}