-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.43 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": "fastpress/response",
"description": "An efficient and flexible HTTP response handling library for PHP, designed to integrate seamlessly with the Fastpress framework. It offers easy-to-use methods for managing HTTP responses, headers, and status codes.",
"type": "library",
"version": "0.1.1",
"require": {
"php": "^7.4 || ^8.0"
},
"scripts": {
"test": "phpunit",
"fix-style": "phpcbf --standard=PSR12 src/",
"lint": "phpcs --standard=PSR12 src/",
"analyze": "phpstan analyse src/"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Fastpress\\Http\\": "src/Http/"
}
},
"license": "MIT",
"authors": [
{
"name": "samayo",
"email": "[email protected]"
}
],
"keywords": ["http", "response", "php", "fastpress", "http response", "framework"],
"homepage": "https://github.com/fastpress/http-response",
"support": {
"issues": "https://github.com/fastpress/http-response/issues",
"source": "https://github.com/fastpress/http-response"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}