-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.79 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.79 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
61
62
63
64
65
{
"name": "stackmasteraliza/laravel-api-response",
"description": "A clean, fluent, and consistent API response builder for Laravel 10/11/12. Features standardized JSON responses, automatic pagination metadata, built-in exception handling, validation error formatting, and a convenient trait for controllers.",
"keywords": [
"laravel",
"php",
"api",
"response",
"json",
"rest",
"restful",
"api-response",
"json-response",
"pagination",
"exception-handler",
"validation",
"http-response",
"laravel-package",
"rest-api",
"stackmasteraliza"
],
"license": "MIT",
"authors": [
{
"name": "stackmasteraliza",
"email": "stackmasteraliza@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.0",
"phpstan/phpstan": "^1.10|^2.0",
"larastan/larastan": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Stackmasteraliza\\ApiResponse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stackmasteraliza\\ApiResponse\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Stackmasteraliza\\ApiResponse\\ApiResponseServiceProvider"
],
"aliases": {
"ApiResponse": "Stackmasteraliza\\ApiResponse\\Facades\\ApiResponse"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse"
},
"minimum-stability": "stable",
"prefer-stable": true
}