-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1012 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
38
39
40
41
{
"name": "opsway/slim-attribute-router",
"description": "Slim attribute router with support of groups and middlewares",
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"authors": [
{
"name": "OpsWay",
"email": "support@opsway.com"
}
],
"require": {
"php": "^8.0",
"beberlei/assert": "^3.3.0",
"slim/slim": "4.*"
},
"require-dev": {
"opsway/psr12-strict-coding-standard": "^0.5.0",
"vimeo/psalm": "^4.22",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"OpsWay\\Slim\\AttributeRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-report": "phpcs --report=source",
"cs-fix": "phpcbf",
"test": "phpunit --no-coverage",
"test-cover": "phpunit",
"psalm": "psalm"
}
}