-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.01 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "webfiori/http",
"type": "library",
"description": "Basic library that can help in creating RESTful APIs using PHP.",
"keywords": [
"JSON",
"PHP",
"API",
"Web APIs",
"Library",
"HTTP",
"PSR-7",
"JSONx"
],
"version": "5.0.5",
"license": "MIT",
"require": {
"php": ">=8.1",
"webfiori/jsonx": "4.0.x",
"ext-json": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"WebFiori\\Http\\": "WebFiori/Http"
}
},
"autoload-dev": {
"psr-4": {
"WebFiori\\Tests\\Http\\": "tests/WebFiori/Tests/Http/"
}
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml",
"test10": "phpunit --configuration tests/phpunit10.xml",
"fix-cs": "php-cs-fixer fix --config=php_cs.php.dist"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.92"
}
}