-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
44 lines (44 loc) · 1019 Bytes
/
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
{
"name": "yaap/theme",
"description": "Theme support for Laravel with assets, theme extends etc.",
"license": "MIT",
"keywords": [
"laravel",
"theme",
"layout",
"asset"
],
"authors": [
{
"name": "Biluk Andrey",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10.0 | ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"YAAP\\Theme\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"ThemeLoader": "YAAP\\Theme\\Facades\\ThemeLoader"
},
"providers": [
"YAAP\\Theme\\ThemeServiceProvider"
]
}
},
"scripts": {
"style:fix": "vendor/bin/php-cs-fixer fix --config php-cs-fixer.dist.php"
}
}