Skip to content

Commit cc93a0a

Browse files
committed
Add composer.json
0 parents  commit cc93a0a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

composer.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "luciano-jr/laravel-api-query-handler",
3+
"description": "Laravel API Query Handler Package.",
4+
"type": "library",
5+
"license": "MIT",
6+
"keywords": ["laravel", "api", "query handler", "collection", "data", "eloquent"],
7+
"authors": [
8+
{
9+
"name": "Luciano Junior",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": ">=5.4",
15+
"illuminate/support": "^5.0.0",
16+
"illuminate/database": "^5.0.0",
17+
"illuminate/http": "^5.0.0"
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "^5.5"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Luciano-Jr\\LaravelApiQueryHandler\\": "src"
25+
}
26+
},
27+
"extra": {
28+
"laravel": {
29+
"providers": [
30+
"\\Luciano-Jr\\LaravelApiQueryHandler\\Services\\ServiceProvider"
31+
]
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)