We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc6a50 commit 103629aCopy full SHA for 103629a
composer.json
@@ -1,7 +1,14 @@
1
{
2
"name": "hankz/laravel-plus-api",
3
+ "description": "Convenient Laravel API response tools and automated error handling functionality are provided.",
4
"type": "library",
5
"license": "MIT",
6
+ "keywords": [
7
+ "laravel",
8
+ "laravel-plus",
9
+ "api",
10
+ "response"
11
+ ],
12
"autoload": {
13
"psr-4": {
14
"Hankz\\LaravelPlusApi\\": "src/"
@@ -14,9 +21,14 @@
21
}
15
22
],
16
23
"require": {
17
- "php": "^7.4|^8.0"
24
+ "php": "^7.4|^8.0",
25
+ "laravel/framework": ">=7"
18
26
},
19
- "require-dev": {
20
- "laravel/framework": "7"
27
+ "extra": {
28
+ "laravel": {
29
+ "providers": [
30
+ "Hankz\\LaravelPlusApi\\LaravelPlusApiServiceProvider"
31
+ ]
32
+ }
33
-}
34
+}
0 commit comments