-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 915 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
{
"name": "nicc0/slim-annotation-router",
"description": "Slim Annotation Router for Slim 4",
"keywords": ["library", "slim", "bridge", "annotation", "rest", "router", "psr7"],
"homepage": "https://github.com/nicc0/slim-annotation-router",
"type": "library",
"minimum-stability": "beta",
"license": "MIT",
"authors": [
{
"name": "Daniel Tecza",
"email": "[email protected]",
"homepage": "https://www.danieltecza.pl/"
}
],
"require": {
"php": "^7.2 || ~8.0",
"slim/slim": "~4.0",
"doctrine/annotations": "~1.6"
},
"require-dev": {
"phpunit/phpunit": ">=7.5",
"slim/http": "^1.2",
"slim/psr7": "^1.3"
},
"autoload": {
"psr-4": {
"Slim\\AnnotationRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\AnnotationRouter\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}