forked from horde/git-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 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
{
"name": "horde/horde-gittools",
"description": "Utility for installing and managing Horde checkouts.",
"type": "project",
"homepage": "https://www.horde.org",
"license": "LGPL",
"authors": [
{
"name": "Michael J Rubinsky",
"email": "mrubinsk@horde.org",
"role": "lead"
},
{
"name": "Jan Schneider",
"email": "jan@horde.org",
"role": "lead"
}
],
"version": "1.0.0alpha1",
"time": "2017-03-29",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/horde/components"
},
{
"type": "pear",
"url": "https://pear.horde.org"
}
],
"require": {
"php": ">=5.5.0",
"pear-pear.horde.org/horde_argv": "^2.1.0",
"pear-pear.horde.org/horde_cache": "^2.5.5",
"pear-pear.horde.org/horde_cli": "^2.3.0",
"pear-pear.horde.org/horde_cli_modular": "^2.1.0",
"pear-pear.horde.org/horde_exception": "^2.0.8",
"pear-pear.horde.org/horde_http": "^2.1.7",
"pear-pear.horde.org/horde_pear": "^1.0.0@dev",
"pear-pear.horde.org/horde_translation": "^2.2.2",
"pear-pear.horde.org/horde_yaml": "^2.1.0",
"horde/components": "dev-master",
"pear/archive_tar": "^1.4.14",
"pear/pear": "^1.10.13"
},
"autoload": {
"psr-4": {"Horde\\GitTools\\": "lib"}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": "Horde\\GitTools\\Callbacks::linkHordeRole",
"pre-update-cmd": "Horde\\GitTools\\Callbacks::unlinkHordeRole",
"post-update-cmd": "Horde\\GitTools\\Callbacks::linkHordeRole"
}
}