-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.24 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
46
47
48
49
50
{
"name": "macropay-solutions/laravel-crud-wizard-free",
"type": "library",
"description": "Free library for laravel/lumen crud operations including url query language",
"keywords": [
"crud",
"wizard",
"laravel",
"lumen",
"free",
"restful-api",
"url-query-language"
],
"prefer-stable": true,
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"nesbot/carbon": "^2.62",
"maatwebsite/excel": "^3.1",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"illuminate/database": "^9.36",
"illuminate/contracts": "^9.36",
"illuminate/http": "^9.36",
"illuminate/pagination": "^9.36",
"illuminate/routing": "^9.36",
"illuminate/support": "^9.36",
"illuminate/validation": "^9.52",
"phpunit/phpunit": "^9.4",
"symfony/http-foundation": "^6.0"
},
"suggest": {
"laravel/lumen-framework": ">= 8.0",
"laravel/framework": ">= 8.0",
"macropay-solutions/laravel-crud-wizard-demo": "dev-production",
"barryvdh/laravel-ide-helper": "*"
},
"autoload": {
"psr-4": {
"MacropaySolutions\\LaravelCrudWizard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MacropaySolutions\\LaravelCrudWizard\\Test\\": "tests/"
}
}
}