forked from mediamonks/symfony-sonata-media-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mediamonks/sonata-media-bundle",
"type": "symfony-bundle",
"description": "A powerful, flexible and easy to use alternative for the existing Sonata Media Bundle",
"keywords": [
"media",
"image",
"video",
"sound",
"embed",
"oembed",
"youtube",
"bundle",
"symfony",
"sonata",
"admin",
"thumbnail",
"resize",
"focalpoint",
"focal point"
],
"homepage": "https://www.mediamonks.com/",
"license": "MIT",
"authors": [
{
"name": "Robert Slootjes",
"email": "[email protected]",
"homepage": "https://github.com/slootjes"
}
],
"require": {
"php": "^7.0",
"doctrine/doctrine-bundle": "^1.6",
"sonata-project/doctrine-orm-admin-bundle": "^3.4",
"symfony/dependency-injection": "^3.3|^4.0",
"symfony/http-kernel": "^3.3|^4.0",
"oneup/flysystem-bundle": "^2.0|^3.0",
"league/glide": "^1.2"
},
"require-dev": {
"sensio/framework-extra-bundle": "^3.0|^4.0|^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.0|^2.0",
"mockery/mockery": "^0.9.4",
"liip/functional-test-bundle": "^1.7",
"doctrine/doctrine-fixtures-bundle": "^2.3|^3.0",
"symfony/symfony": "^3.3|^4.0",
"mikey179/vfsStream": "^1.6",
"php-vcr/php-vcr": "dev-master@dev",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"MediaMonks\\SonataMediaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MediaMonks\\SonataMediaBundle\\Tests\\": "tests/",
"MediaMonks\\SonataMediaBundle\\Tests\\App\\": "tests/Functional/app/",
"MediaMonks\\SonataMediaBundle\\Tests\\AppBundle\\": "tests/Functional/src/AppBundle/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}