-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
46 lines (46 loc) · 1022 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
45
46
{
"name": "asgardcms/setting-module",
"type": "asgard-module",
"description": "Setting module for AsgardCMS. Handles all the site settings.",
"keywords": [
"asgardcms",
"settings"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AsgardCms/Setting/issues",
"source": "https://github.com/AsgardCms/Setting"
},
"require": {
"php": ">=5.5",
"composer/installers": "~1.0",
"asgardcms/core-module": "~1.0",
"doctrine/dbal": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"orchestra/testbench": "~3.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nWidart/modules"
}
],
"autoload-dev": {
"psr-4": {
"Modules\\Setting\\": ".",
"Modules\\": "Modules/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}