forked from yaapis/Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.04 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": "madan2056/yapptheme",
"description": "Theme support for Laravel 8/9 with assets, theme extends etc.",
"keywords": [
"laravel",
"theme",
"layout",
"asset"
],
"license": "MIT",
"authors": [
{
"name": "Biluk Andrey ( original )",
"email": "yaapis@gmail.com"
},
{
"name": "Madan Adhikari ( Fork )",
"email": "madan2056@gmail.com"
}
],
"require": {
"php": ">=7.4",
"friendsofphp/php-cs-fixer": "^3.13"
},
"autoload": {
"psr-0": {
"YAAP\\Theme": "src/"
}
},
"scripts": {
"style:fix": "vendor/bin/php-cs-fixer fix --config php-cs-fixer.dist.php"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"YAAP\\Theme\\ThemeServiceProvider"
],
"aliases": {
"Theme": "YAAP\\Theme\\Facades\\Theme"
}
}
}
}