-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 945 Bytes
/
composer.json
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
{
"name": "naranarethiya/model-resource-generator",
"description": "Automatically generate API resource classes for your Laravel models, simplifying the process of transforming your models into API resources with ease.",
"type": "library",
"require": {
"laravel/framework": "^8.0|^9.0|^10.0|^11.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Naranarethiya\\ModelResourceGenerator\\": "src/"
}
},
"authors": [
{
"name": "Naran Arethiya",
"email": "naranarethiya@gmail.com"
}
],
"minimum-stability": "dev",
"require-dev": {
"laravel/pint": "^1.17",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^9.2"
},
"extra": {
"laravel": {
"providers": [
"Naranarethiya\\ModelResourceGenerator\\ModelResourceServiceProvider"
]
}
}
}