-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
{
"name": "weblabormx/laravel-front",
"description": "Front is a administration panel for Laravel. It allows you to create CRUD easily in minutes. It allows to fully customize any part of the code.",
"keywords": [
"laravel",
"admin"
],
"license": "MIT",
"authors": [
{
"name": "Carlos Escobar",
"email": "carlosescobar@weblabor.mx"
}
],
"require": {
"php": ">=7.1.0",
"laracasts/flash": ">=3",
"laravelcollective/html": ">=5",
"opis/closure": "^3.1",
"laravel/framework": ">5.5",
"weblabormx/file-modifier": "*",
"intervention/image": ">=2.5"
},
"autoload": {
"files": [
"src/Http/helpers.php"
],
"psr-4": {
"WeblaborMx\\Front\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.3-dev"
},
"laravel": {
"providers": [
"WeblaborMx\\Front\\FrontServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}