Skip to content

Commit c3c425a

Browse files
Initial commit
0 parents  commit c3c425a

File tree

6 files changed

+3006
-0
lines changed

6 files changed

+3006
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
### Laravel template
2+
vendor/
3+
node_modules/
4+
npm-debug.log
5+
yarn-error.log
6+
.phpunit.result.cache
7+
.idea/

composer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "alibori/laravel-api-resource-generator",
3+
"description": "Package to generate API resources from models.",
4+
"authors": [
5+
{
6+
"name": "Axel Libori Roch",
7+
"email": "[email protected]"
8+
}
9+
],
10+
"type": "library",
11+
"autoload": {
12+
"psr-4": {
13+
"Alibori\\LaravelApiResourceGenerator\\": "src/"
14+
}
15+
},
16+
"extra": {
17+
"laravel": {
18+
"providers": [
19+
"Alibori\\LaravelApiResourceGenerator\\LaravelApiResourceGeneratorServiceProvider"
20+
]
21+
}
22+
},
23+
"keywords": [
24+
"laravel",
25+
"resources",
26+
"generator"
27+
],
28+
"license": "MIT",
29+
"require": {
30+
"php": ">=8.1",
31+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
32+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
33+
"illuminate/filesystem": "^6.0|^7.0|^8.0|^9.0|^10.0",
34+
"doctrine/dbal": "^2.9|^2.10|^3.0",
35+
"illuminate/database": "^10.1"
36+
}
37+
}

0 commit comments

Comments
 (0)