-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "pwm/sfw-router",
"description": "A simple Router that maps incoming requests to predefined handlers",
"type": "library",
"keywords": ["sfw", "http-router"],
"homepage": "https://github.com/pwm/sfw-router",
"license": "MIT",
"authors": [
{
"name": "Zsolt Szende",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"pwm/sfw-request": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^0.7.0",
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"SFW\\Router\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SFW\\Router\\": "tests/unit/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=PSR2 --warning-severity=0 src",
"phpstan": "vendor/bin/phpstan analyse -l 7 src"
}
}