-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
42 lines (42 loc) · 948 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
{
"name": "asgardcms/translation-module",
"description": "Module containing all AsgardCms translations",
"type": "asgard-module",
"license": "MIT",
"require": {
"php": ">=5.5",
"composer/installers": "~1.0",
"asgardcms/core-module": "~1.0",
"league/csv": "~7.2.0",
"venturecraft/revisionable": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"orchestra/testbench": "~3.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nWidart/modules"
}
],
"autoload-dev": {
"psr-4": {
"Modules\\Translation\\": ".",
"Modules\\": "Modules/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Modules\\Translation\\": ""
}
}
}