-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
54 lines (54 loc) · 1.19 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
52
53
54
{
"name": "idavoll/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/Platform/issues",
"source": "https://github.com/AsgardCms/Media"
},
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"intervention/image": "^2.3",
"idavoll/tag-module": "~3.0",
"guzzlehttp/psr7": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "3.5.*",
"league/flysystem-aws-s3-v3": "~1.0",
"mockery/mockery": "^0.9.5",
"friendsofphp/php-cs-fixer": "^1.11",
"doctrine/dbal": "^2.5"
},
"autoload-dev": {
"psr-4": {
"Modules\\Media\\": ".",
"Modules\\": "Modules/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}