forked from exodusanto/Laravel-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.34 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
{
"name": "boldcompass/administrator",
"description": "A database interface package for Laravel (Legacy of Frozennode Laravel-Administrator) and (exodusanto Laravel-Admin)",
"homepage": "http://administrator.frozennode.com",
"keywords": ["administrator", "admin", "database", "laravel-administrator", "laravel", "cms"],
"license": "MIT",
"authors": [
{
"name": "Jan Hartigan",
"email": "jan@frozennode.com"
},
{
"name": "Antonio Dal Sie",
"email": "info@antoniodalsie.com"
},
{
"name": "Rheman Tidalgo of BoldCompass",
"email": "tidalgo.rheman@gmail.com"
}
],
"require": {
"php": ">=7.1.3",
"laravel/framework": "5.8.*",
"ckeditor/ckeditor": "4.*"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~5.7.12"
},
"autoload": {
"classmap": [
"src/controllers"
],
"psr-0": {
"Frozennode\\Administrator": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Frozennode\\Administrator\\AdministratorServiceProvider"
]
}
},
"scripts": {
"post-update-cmd": [
"if [ -d \"public/js/ckeditor/\" ] \nthen \nrm -R public/js/ckeditor/ \nfi ",
"if [ -d \"vendor/ckeditor/ckeditor/\" ] \nthen \nmv vendor/ckeditor/ckeditor/ public/js/ \nfi",
"if [ -d \"vendor/ckeditor/\" ] \nthen \nrm -R vendor/ckeditor/ \nfi"
]
},
"minimum-stability": "dev"
}