-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
52 lines (52 loc) · 1.53 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
51
52
{
"name": "laravel-enso/control-panel",
"description": "A control panel that aggregates, controls and displays statistics from other laravel-enso apps",
"type": "project",
"require": {
"guzzlehttp/guzzle": "^7.0",
"laravel-enso/core": "^10.0",
"laravel-enso/enums": "^2.0",
"laravel-enso/forms": "^4.0",
"laravel-enso/helpers": "^3.0",
"laravel-enso/permissions": "^5.0",
"laravel-enso/migrator": "^2.0",
"laravel-enso/control-panel-common": "^2.0",
"laravel-enso/tables": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "Mihai Ocneanu",
"email": "[email protected]",
"homepage": "https://laravel-enso.com",
"role": "Developer"
},
{
"name": "Adrian Ocneanu",
"email": "[email protected]",
"homepage": "https://laravel-enso.com",
"role": "Developer"
},
{
"name": "Reza Fouladi",
"email": "[email protected]",
"homepage": "https://laravel-enso.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LaravelEnso\\ControlPanel\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelEnso\\ControlPanel\\AppServiceProvider",
"LaravelEnso\\ControlPanel\\EnumServiceProvider"
],
"aliases": []
}
}
}