forked from digitaldreams/laracrud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "digitaldream/laracrud",
"type": "library",
"description": "Do you have a well structured database and you want to make a Laravel Application on top of it. By using this tools you can generate Models which have necessary methods and property, Request class with rules, generate route from controllers method and its parameter and full features form with validation error message and more with a single line of command",
"keywords": [
"Laravel",
"CRUD",
"Laravel Code Generator",
"Code Generator"
],
"homepage": "https://github.com/digitaldreams/laracrud",
"license": "MIT",
"authors": [
{
"name": "Tuhin Bepari",
"email": "[email protected]",
"homepage": "http://www.tuhinbepari.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0",
"digitaldream/dbreader": "~1.0"
},
"require-dev": {
},
"suggest": {
"intervention/image": "For Image"
},
"autoload": {
"psr-4": {
"LaraCrud\\": "src/lara-crud/"
}
},
"extra": {
"laravel": {
"providers": [
"LaraCrud\\LaraCrudServiceProvider"
],
"aliases": {
}
}
}
}