forked from horde/components
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
83 lines (83 loc) · 2.32 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
81
82
83
{
"minimum-stability": "dev",
"name": "horde/components",
"description": "Developer tool for managing Horde components",
"type": "horde-application",
"homepage": "https://www.horde.org",
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Jan Schneider",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Gunnar Wrobel",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Ralf Lang",
"email": "[email protected]",
"role": "contributor"
}
],
"time": "2022-04-19",
"repositories": [
{
"type": "composer",
"url": "https://horde-satis.maintaina.com"
}
],
"require": {
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^2",
"php": "^7.4 || ^8",
"horde/autoloader": "* || dev-FRAMEWORK_6_0",
"horde/argv": "* || dev-FRAMEWORK_6_0",
"horde/cli": "^3 || dev-FRAMEWORK_6_0",
"horde/cli_modular": "^3 || dev-FRAMEWORK_6_0",
"horde/http": "* || dev-FRAMEWORK_6_0",
"horde/pear": "* || dev-FRAMEWORK_6_0",
"horde/role": "* || dev-FRAMEWORK_6_0",
"horde/text_diff": "* || dev-FRAMEWORK_6_0",
"horde/util": "* || dev-FRAMEWORK_6_0",
"horde/injector": "* || dev-FRAMEWORK_6_0",
"horde/release": "^4 || dev-FRAMEWORK_6_0",
"horde/yaml": "* || dev-FRAMEWORK_6_0"
},
"require-dev": {
"horde/test": "^3 || dev-FRAMEWORK_6_0",
"composer/composer": "2.5.x-dev"
},
"suggest": {
"horde/test": "^3 || dev-FRAMEWORK_6_0",
"squizlabs/php_codesniffer": "^3.5",
"pear/archive_tar": "^1.4",
"sebastian/phpcpd": "^6",
"sebastian/phpdcd": "^1",
"phploc/phploc": "^7",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-0": {
"Components": "lib/"
},
"psr-4": {
"Horde\\Components\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Horde\\Components\\Test\\": "test/"
}
},
"bin": [
"bin/horde-components"
],
"config": {
"allow-plugins": {
"horde/horde-installer-plugin": true
}
}
}