-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.84 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": "simplepleb/thememanager-module",
"description": "Used to manage site themes for front and back end Laravel",
"type": "laravel-module",
"keywords":[ "laravel","laravel-cms","laravel-themes","laravel-theme-maker","laravel-dashboard","laravel-theme"],
"version": "v1.64",
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "SimplePleb",
"email": "plebeian.tribune@protonmail.com"
}
],
"require": {
"php": "^8.0",
"nwidart/laravel-modules": "^9.0",
"simplepleb/themes": "~1.6"
},
"suggest": {
"spatie/laravel-permission": "To be able to set access by role and permissions",
"joshbrw/laravel-module-installer": "Makes installing and updating modules simple",
"simplepleb/modulemanager-module": "Manage modules easily",
"simplepleb/menumaker-module": "Build dynamic menus for your front and back end",
"simplepleb/article-module": "Complete article post and category module",
"simplepleb/comment-module": "Add comments to site content",
"simplepleb/content-module": "Manage site content and front-facing pages",
"simplepleb/tag-module": "Add tags and taggables to content",
"simplepleb/themes": "A library of starter themes for your laravel project"
},
"extra": {
"laravel": {
"providers": [
"Modules\\Thememanager\\Providers\\ThememanagerServiceProvider"
],
"aliases": {
"Theme": "SimplePleb\\Theme\\Facades\\Theme"
}
}
},
"autoload": {
"psr-4": {
"Modules\\Thememanager\\": ""
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/simplepleb/themes.git"
}
]
}