forked from gmlo89/reactor-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 697 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 697 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
31
{
"name": "gmlo/cms",
"description": "Reactor CMS with Laravel 5.1",
"keywords": ["Laravel", "CMS", "PHP"],
"version": "0",
"license": "MIT",
"authors": [
{
"name": "Giovanni Lopez",
"email": "gmlo89@hotmail.com",
"twitter": "@gmlo_89"
}
],
"scripts": {
"post-install-cmd": [
"php artisan vendor:publish",
"php artisan migrate"
],
"post-update-cmd": [
"php artisan vendor:publish"
]
},
"require": {
"laravelcollective/html": "~5.0"
},
"autoload": {
"psr-4": {
"Gmlo\\CMS\\": "src/"
}
}
}