-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.27 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
{
"name": "mediactive-digital/medkit-theme-light",
"description": "Theme boilerplate for mediactive-digital/medkit",
"license": "MIT",
"authors": [
{
"name": "Mediactive Digital",
"email": "[email protected]",
"homepage": "https://www.mediactive-digital.com/"
}
],
"homepage": "https://github.com/mediactive-digital/medkit-theme-light",
"keywords": ["Laravel", "MedKit", "boilerplate"],
"require": {
"illuminate/support": "*",
"lavary/laravel-menu" : "*",
"mediactive-digital/medkit" : "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "*",
"orchestra/testbench": "*",
"sempro/phpunit-pretty-print": "*"
},
"autoload": {
"psr-4": {
"MediactiveDigital\\MedKitTheme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MediactiveDigital\\MedKitTheme\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"MediactiveDigital\\MedKitTheme\\MedKitThemeServiceProvider"
],
"aliases": {
"MedKitTheme": "MediactiveDigital\\MedKitTheme\\Facades\\MedKitTheme"
}
}
}
}