-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 1.19 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
{
"name": "tnapf/router",
"description": "Totally Not Another PHP Framework's router package",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Tnapf\\Router\\": "src/",
"Tests\\Tnapf\\Router\\": "tests/"
}
},
"authors": [
{
"name": "Robert Snedeker",
"email": "[email protected]"
}
],
"require": {
"httpsoft/http-server-request": "^1.0",
"php": ">=8.1",
"commandstring/utils": "^1.4",
"httpsoft/http-emitter": "^1.0",
"httpsoft/http-response": "^1.0",
"httpsoft/http-message": "^1.0.12"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.1"
},
"scripts": {
"generate-exception-docs": "php tools/HttpExceptions/GenerateDocs.php",
"generate-exception-classes": "php tools/HttpExceptions/GenerateClasses.php",
"cs": "phpcs ./src --standard=psr12",
"csf": "phpcbf ./src --standard=psr12",
"phpunit": "phpunit",
"phpunit-coverage": "@php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-html .phpunit.cache/cov-html"
}
}