forked from arbory/arbory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.59 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
{
"name": "arbory/arbory",
"description": "Administration interface for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Roberts",
"email": "roberts@cubesystems.lv"
}
],
"require": {
"php": "^7.1",
"laravel/framework": "^5.5.0|^5.6.0",
"laravelcollective/html": "^5.5.0|^5.6.0",
"doctrine/dbal": "^2.5",
"gazsp/baum": "~1.1",
"components/jquery": "^3.2",
"components/jqueryui": "1.12.*",
"components/jquery-cookie": "1.4.*",
"ckeditor/ckeditor": "^4.5",
"alsofronie/eloquent-uuid": "^1.0.5",
"dimsav/laravel-translatable": "8.*|9.*",
"waavi/translation": "^2.1.5",
"cartalyst/sentinel": "^2.0.13",
"roboc/laravel-glide": "^1.1.0",
"spatie/laravel-sluggable": "^2.1.0",
"maatwebsite/excel": "^3.0.5",
"unisharp/laravel-filemanager": "^1.8.0"
},
"require-dev" : {
"satooshi/php-coveralls": "^1.0",
"phpunit/phpunit" : "^6.1",
"mockery/mockery": "dev-master",
"diablomedia/phpunit-pretty-printer": "^2"
},
"autoload": {
"psr-4": { "Arbory\\Base\\": "src" },
"classmap": ["database/seeds/"]
},
"extra": {
"laravel": {
"providers": [
"Arbory\\Base\\Providers\\ArboryServiceProvider",
"Arbory\\Base\\Providers\\NodeServiceProvider"
],
"dont-discover": [
"waavi/translation",
"cartalyst/sentinel"
]
}
}
}