forked from igaster/laravel-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (29 loc) · 945 Bytes
/
composer.json
File metadata and controls
30 lines (29 loc) · 945 Bytes
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
{
"name": "agentsoftware/laravel-theme",
"description": "Laravel 5 Themes: Asset & Views folder per theme. Theme inheritance. Blade integration and more...",
"keywords": ["themes", "views", "assets", "blade", "laravel-5", "package"],
"license": "MIT",
"homepage": "https://github.com/AgentSoftware/laravel-theme",
"authors": [
{
"name": "Giannis Gasteratos",
"email": "igasteratos@gmail.com"
}
],
"require": {
},
"require-dev": {
"orchestra/testbench": "~3.4",
"phpunit/phpunit": "^6.0"
},
"suggest": {
"orchestra/asset" : "Use '@css' and '@js' in Blade files"
},
"autoload": {
"psr-4" : {
"AgentSoftware\\LaravelTheme\\" : "src/",
"AgentSoftware\\LaravelTheme\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable"
}