-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
66 lines (66 loc) · 1.83 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
{
"name": "netgen/remote-media-bundle",
"description": "Remote media field type implementation",
"type": "ezplatform-bundle",
"keywords": [
"ezpublish",
"ezplatform",
"remote media",
"netgen",
"remote-media-bundle"
],
"homepage": "https://github.com/netgen/NetgenRemoteMediaBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "http://netgen.io",
"email": "[email protected]"
},
{
"name": "Ivan Herak",
"email": "[email protected]"
},
{
"name": "Jurica Hladek",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ezsystems/ezpublish-kernel": "^7.4",
"doctrine/orm": "^2.4",
"cloudinary/cloudinary_php": "^1.10"
},
"require-dev": {
"ezsystems/legacy-bridge": "^2.0",
"netgen/open-graph-bundle": "^1.2",
"netgen/admin-ui-bundle": "^2.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"mikey179/vfsstream": "^1.2",
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.18",
"rector/rector": "^0.5.22"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\RemoteMediaBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\Tests\\": "tests",
"Netgen\\Bundle\\OpenGraphBundle\\Tests\\": "vendor/netgen/open-graph-bundle/tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"fix": "@php vendor/bin/php-cs-fixer fix"
},
"extra": {
"ezpublish-legacy-dir": "ezpublish_legacy",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}