-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.4 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
{
"name": "codions/laravel-themes-manager",
"description": "Bring multi themes support to your Laravel application with a full-featured Themes Manager",
"license": "MIT",
"support": {
"issues": "https://github.com/codions/laravel-themes-manager/issues",
"source": "https://github.com/codions/laravel-themes-manager"
},
"authors": [
{
"name": "Fábio Assunção",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"codions/laravel-themes-installer": "^1.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0",
"livewire/livewire": "^2.10"
},
"autoload": {
"psr-4": {
"Codions\\ThemesManager\\": "src"
},
"files": [
"helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Codions\\ThemesManager\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"codions/laravel-themes-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Codions\\ThemesManager\\Providers\\PackageServiceProvider"
],
"aliases": {
"Theme": "Codions\\ThemesManager\\Facades\\ThemesManager"
},
"dont-discover": []
}
}
}