forked from AsgardCms/Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 963 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 963 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "asgardcms/blog-module",
"type": "asgard-module",
"description": "A blog module for AsgardCMS.",
"keywords": [
"blog",
"asgardcms",
"journal"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "info@asgardcms.com",
"role": "Developer"
}
],
"support": {
"email": "support@asgardcms.com",
"issues": "https://github.com/AsgardCms/Blog/issues",
"source": "https://github.com/AsgardCms/Blog"
},
"require": {
"php": ">=5.4",
"composer/installers": "~1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nWidart/modules"
}
],
"scripts": {
"post-install-cmd": [
"php artisan module:migrate Blog",
"php artisan asgard:publish:module Blog"
],
"post-update-cmd": [
"php artisan module:migrate Blog",
"php artisan asgard:publish:module Blog"
]
},
"minimum-stability": "dev"
}