-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
55 lines (55 loc) · 1.44 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
{
"name": "owncloud/gallery",
"type": "project",
"description": "Media gallery for ownCloud which includes previews for all media types supported by your ownCloud installation.",
"license": "AGPL-3.0",
"homepage": "https://github.com/owncloud/gallery",
"authors": [
{
"name": "Olivier Paroz",
"email": "galleryapps@oparoz.com",
"role": "Developer",
"homepage": "http://www.interfasys.ch"
},
{
"name": "Robin Appelman",
"email": "robin@icewind.nl",
"role": "Developer",
"homepage": "https://github.com/icewind1991"
}
],
"config" : {
"platform": {
"php": "7.3"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"codeception/c3": true
}
},
"support": {
"issues": "https://github.com/owncloud/gallery/issues",
"wiki": "https://github.com/owncloud/gallery/wiki",
"source": "https://github.com/owncloud/gallery"
},
"require": {
"symfony/yaml": "~2.6"
},
"require-dev": {
"guzzlehttp/guzzle": "^5.0|^6.2",
"phpunit/phpunit": "^9.5",
"codeception/codeception": "^4.1",
"codeception/phpbuiltinserver": "*",
"composer-plugin-api": "^2.0",
"codeception/c3": "2.*",
"flow/jsonpath": "^0.4.0",
"jakub-onderka/php-parallel-lint": "1.*",
"jakub-onderka/php-console-highlighter": "0.*",
"bamarni/composer-bin-plugin": "^1.4"
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}