-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
80 lines (80 loc) · 2.6 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"minimum-stability": "dev",
"name": "horde/ansel",
"description": "Photo gallery application",
"type": "horde-application",
"homepage": "https://www.horde.org/apps/ansel",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Michael J Rubinsky",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Jan Schneider",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Chuck Hagenbuch",
"email": "[email protected]",
"role": "lead"
}
],
"time": "2021-03-13",
"repositories": [
{
"type": "composer",
"url": "https://horde-satis.maintaina.com/"
}
],
"require": {
"horde/horde-installer-plugin": "^2 || dev-FRAMEWORK_6_0",
"php": "^7.4 || ^8",
"horde/content": "^3 || dev-FRAMEWORK_6_0",
"horde/horde": "^6 || dev-FRAMEWORK_6_0",
"horde/auth": "^3 || dev-FRAMEWORK_6_0",
"horde/autoloader": "^3 || dev-FRAMEWORK_6_0",
"horde/core": "^3 || dev-FRAMEWORK_6_0",
"horde/date": "^3 || dev-FRAMEWORK_6_0",
"horde/db": "^3 || dev-FRAMEWORK_6_0",
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
"horde/form": "^3 || dev-FRAMEWORK_6_0",
"horde/group": "^3 || dev-FRAMEWORK_6_0",
"horde/image": "^3 || dev-FRAMEWORK_6_0",
"horde/mime": "^3 || dev-FRAMEWORK_6_0",
"horde/nls": "^3 || dev-FRAMEWORK_6_0",
"horde/perms": "^3 || dev-FRAMEWORK_6_0",
"horde/prefs": "^3 || dev-FRAMEWORK_6_0",
"horde/serialize": "^3 || dev-FRAMEWORK_6_0",
"horde/share": "^3 || dev-FRAMEWORK_6_0",
"horde/support": "^3 || dev-FRAMEWORK_6_0",
"horde/text_filter": "^3 || dev-FRAMEWORK_6_0",
"horde/url": "^3 || dev-FRAMEWORK_6_0",
"horde/util": "^3 || dev-FRAMEWORK_6_0",
"horde/view": "^3 || dev-FRAMEWORK_6_0",
"horde/vfs": "^3 || dev-FRAMEWORK_6_0",
"ext-gettext": "*",
"ext-hash": "*"
},
"suggest": {
"horde/service_urlShortener": "^3 || dev-FRAMEWORK_6_0",
"horde/service_twitter": "^3 || dev-FRAMEWORK_6_0",
"horde/service_facebook": "^3 || dev-FRAMEWORK_6_0",
"ext-gd": "*",
"ext-imagick": "*",
"ext-libpuzzle": "*",
"ext-php-facedetect": "*"
},
"autoload": {
"psr-0": {
"Ansel": "lib/"
}
},
"bin": [
"bin/ansel",
"bin/ansel-convert-sql-shares-to-sqlng",
"bin/ansel-garbage-collection"
]
}