-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
44 lines (44 loc) · 929 Bytes
/
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
{
"name": "idavoll/page-module",
"type": "asgard-module",
"description": "Page module for AsgardCMS. Page management.",
"keywords": [
"asgardcms",
"pages"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "info@asgardcms.com",
"role": "Developer"
}
],
"support": {
"email": "support@asgardcms.com",
"issues": "https://github.com/AsgardCms/Page/issues",
"source": "https://github.com/AsgardCms/Page"
},
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"idavoll/tag-module": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "3.5.*"
},
"autoload-dev": {
"psr-4": {
"Modules\\Page\\": ".",
"Modules\\": "Modules/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}