-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
executable file
·63 lines (63 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hexadog/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/hexadog/laravel-themes-manager/issues",
"source": "https://github.com/hexadog/laravel-themes-manager"
},
"authors": [
{
"name": "Gaetan",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"hexadog/laravel-theme-installer": "^1.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0",
"laravel/pint": "^1.10",
"orchestra/testbench": "^8.3"
},
"autoload": {
"psr-4": {
"Hexadog\\ThemesManager\\": "src"
},
"files": [
"helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Hexadog\\ThemesManager\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"hexadog/laravel-theme-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Hexadog\\ThemesManager\\Providers\\PackageServiceProvider"
],
"aliases": {
"Theme": "Hexadog\\ThemesManager\\Facades\\ThemesManager"
},
"dont-discover": []
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:windows": "vendor\\bin\\phpunit",
"check-style": "vendor/bin/phpcs --extensions=php ./src",
"fix-style": "vendor/bin/php-cs-fixer fix"
}
}