-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
44 lines (44 loc) · 942 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
42
43
44
{
"name": "izniburak/router",
"type": "library",
"description": "simple router class for php",
"keywords": [
"router",
"route",
"routing"
],
"homepage": "https://github.com/izniburak/php-router",
"license": "MIT",
"authors": [
{
"name": "İzni Burak Demirtaş",
"email": "[email protected]",
"homepage": "https://burakdemirtas.org"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/http-foundation": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.4"
},
"autoload": {
"psr-4": {
"Buki\\Router\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Buki\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-html coverage",
"dev": "cd tests/Example && php -S 127.0.0.1:8000 -t ./"
},
"minimum-stability": "dev",
"prefer-stable": true
}