-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
49 lines (49 loc) · 1.14 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
{
"name": "vectorface/snappy-router",
"description": "A quick and snappy routing framework.",
"keywords": [
"MVC", "routing", "router", "drinking bird"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Bruce",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Vectorface\\SnappyRouter\\": "./src/Vectorface/SnappyRouter"
}
},
"autoload-dev": {
"psr-4": {
"Vectorface\\SnappyRouterTests\\": "./tests/Vectorface/SnappyRouterTests"
}
},
"homepage": "https://github.com/Vectorface/snappy-router",
"support": {
"issues": "https://github.com/Vectorface/snappy-router/issues",
"source": "https://github.com/Vectorface/snappy-router"
},
"require": {
"php": ">=8.0",
"vectorface/whip": "^0.5",
"twig/twig": "^2.0",
"nikic/fast-route":"^1.0.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^2.0"
},
"scripts": {
"test": [
"@test-unit"
],
"test-unit": "phpunit --color=always"
}
}