-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·60 lines (60 loc) · 1.7 KB
/
composer.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "uxmansarwar/response",
"description": "Elegant and lightweight PHP Composer Package for standardized API responses with error, ttl, query and result handling. Package developed by UxmanSarwar a Senior PHP Developer since 2013",
"keywords": [
"php",
"api",
"response",
"json",
"response handler",
"structured response",
"error handling",
"response formatter",
"api output",
"data collector"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Uxman Sarwar",
"email": "uxmansrwr@gmail.com",
"homepage": "https://github.com/uxmansarwar",
"role": "Developer"
}
],
"homepage": "https://github.com/uxmansarwar/response",
"support": {
"issues": "https://github.com/uxmansarwar/response/issues",
"source": "https://github.com/uxmansarwar/response"
},
"config": {
"sort-packages": true,
"prefer-stable": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"UxmanSarwar\\": "src/"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.35",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.10",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.4"
},
"scripts": {
"test": "pest",
"lint": "php-cs-fixer fix --dry-run --diff",
"fix": "php-cs-fixer fix"
},
"minimum-stability": "stable",
"prefer-stable": true
}