-
Notifications
You must be signed in to change notification settings - Fork 217
/
composer.json
executable file
·78 lines (78 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "laravelrus/sleepingowl",
"description": "Administrative interface builder for Laravel.",
"homepage": "http://sleepingowladmin.ru",
"keywords": [
"laravel",
"admin",
"administrator",
"crud",
"panel"
],
"license": "MIT",
"support": {
"issues": "https://github.com/LaravelRUS/SleepingOwlAdmin/issues",
"source": "https://github.com/LaravelRUS/SleepingOwlAdmin"
},
"authors": [
{
"name": "Sleeping Owl",
"email": "owl.sleeping@yahoo.com"
},
{
"name": "Pavel Buchnev",
"email": "butschster@gmail.com"
},
{
"name": "Dave Gabrielyan",
"email": "aioslike@gmail.com"
},
{
"name": "TheArdent",
"email": "oleksii.yaryi@gmail.com"
},
{
"name": "Daan",
"email": "daan@ukr.net"
}
],
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"laravel/framework": ">=5.5",
"kodicomponents/support": "0.*",
"kodicomponents/navigation": "0.* || ~1.0",
"doctrine/dbal": ">=2.3",
"laravelcollective/html": ">=5.5",
"kodicms/laravel-assets": "0.*",
"erusev/parsedown": "1.*",
"davejamesmiller/laravel-breadcrumbs": ">=4.0",
"barryvdh/laravel-ide-helper": ">=2.4"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"mockery/mockery": ">=0.9",
"orchestra/testbench": ">=3.5"
},
"autoload": {
"psr-4": {
"SleepingOwl\\Admin\\": "src/",
"SleepingOwl\\Tests\\": "tests/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"branch-alias": {
"dev-development": "5.6.x-dev"
},
"laravel": {
"providers": [
"SleepingOwl\\Admin\\Providers\\SleepingOwlServiceProvider"
]
}
}
}