-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.26 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
53
54
55
56
57
{
"name": "larabelt/core",
"description": "Core package for any LaraBelt app.",
"keywords": [
"cms",
"laravel",
"larabelt"
],
"license": "MIT",
"authors": [
{
"name": "Matt Crowe",
"email": "github.mpc@zym.me"
},
{
"name": "Rob LaSota",
"email": "rob.lasota@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1.3",
"barryvdh/laravel-cors": "^0.11.0",
"binarytorch/larecipe": "^1.2",
"doctrine/dbal": "^2.5",
"guzzlehttp/guzzle": ">=6.2.0",
"kalnoy/nestedset": "^4.3",
"kint-php/kint": "^2.0",
"laravel/framework": ">=5.6.0",
"laravelcollective/html": "5.6.*",
"maatwebsite/excel": "~3.0.0",
"riimu/kit-phpencoder": "^2.1",
"rutorika/sortable": "4.2.*",
"sabre/uri": "^2",
"silber/bouncer": "v1.0.0-rc.1",
"spatie/db-dumper": "^2.9"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.1",
"barryvdh/laravel-ide-helper": "2.4.*",
"laravel/dusk": "4.0",
"rap2hpoutre/laravel-log-viewer": "^0.8.0"
},
"autoload": {
"classmap": [
"updates"
],
"psr-4": {
"Belt\\Core\\": "src/",
"Tests\\Belt\\Core\\": "tests/"
},
"files": [
"src/helpers.php"
]
}
}