-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
51 lines (51 loc) · 1.09 KB
/
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
47
48
49
50
51
{
"name": "asgardcms/media-module",
"type": "asgard-module",
"description": "Media module for AsgardCMS. Handles the media library.",
"keywords": [
"asgardcms",
"media",
"files",
"library",
"thumbnails",
"filters"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AsgardCms/Media/issues",
"source": "https://github.com/AsgardCms/Media"
},
"require": {
"php": ">=5.4",
"composer/installers": "~1.0",
"intervention/image": "^2.3",
"asgardcms/core-module": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"orchestra/testbench": "~3.1",
"league/flysystem-aws-s3-v3": "~1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nWidart/modules"
}
],
"autoload-dev": {
"psr-4": {
"Modules\\Media\\": ".",
"Modules\\": "Modules/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}