-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.32 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
{
"name": "k9u/request-mapper",
"type": "library",
"description": "Annotatable Request Mapper library for PHP",
"keywords": ["router", "routing", "annotation"],
"license": "MIT",
"authors": [
{
"name": "Yuu Kawanami",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"doctrine/annotations": "^1.11",
"psr/http-message": "^1.0",
"symfony/config": "^5.2",
"symfony/routing": "^5.2"
},
"require-dev": {
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"K9u\\RequestMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"K9u\\RequestMapper\\": ["tests/","tests/fixtures/handlers"]
}
},
"scripts": {
"check": ["@lint", "@test"],
"test": "phpdbg -qrr ./vendor/bin/phpunit --coverage-text",
"lint": [
"phpcs --standard=PSR12 src",
"phpmd src text phpmd.xml",
"phpstan analyze --no-progress --level=max src"
],
"fmt": "phpcbf --standard=PSR12 src"
},
"config": {
"sort-packages": true
}
}