forked from FaCuZ/laravel-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "agentsoftware/theme",
"description": "Theme will help you organize your themes inside Laravel projects easily and maintain its related assets, layouts and partials for the theme in single directory. (Based on teepluss/theme)",
"keywords": ["laravel", "theme", "layout", "asset", "widget"],
"homepage": "https://github.com/facuz/theme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Teepluss",
"email": "admin@laravel.in.th"
},
{
"name": "FaCuZ",
"email": "indis@indis.com.ar"
},
{
"name" : "Robin",
"email" : "robin.baum@agentsoftware.net"
}
],
"require": {
"php": ">=7.0.0",
"jeremeamia/superclosure": "^2.0"
},
"require-dev": {
"illuminate/support": ">=5.0.1"
},
"autoload": {
"psr-4": {
"agentsoftware\\theme\\": "src/"
},
"classmap": [
"src/Exceptions.php"
],
"files": [
"src/helpers.php"
]
},
"minimum-stability": "dev"
}