This repository was archived by the owner on Sep 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.45 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.45 KB
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
{
"name": "kherge/box",
"description": "A tool to simplify building PHARs.",
"keywords": ["phar"],
"homepage": "http://box-project.github.io/box2/",
"license": "MIT",
"authors": [
{
"name": "Kevin Herrera",
"email": "kevin@herrera.io",
"homepage": "http://kevin.herrera.io"
}
],
"support": {
"issues": "https://github.com/box-project/box2/issues"
},
"require": {
"php": ">=5.3.3",
"herrera-io/annotations": "~1.0",
"herrera-io/box": "~1.6",
"herrera-io/json": "~1.0",
"kherge/amend": "~3.0",
"justinrainbow/json-schema": "~1.3",
"phine/path": "~1.0",
"phpseclib/phpseclib": "~2.0",
"symfony/console": "~2.1 || ~3.0",
"symfony/finder": "~2.1 || ~3.0",
"symfony/process": "~2.1 || ~3.0"
},
"require-dev": {
"herrera-io/phpunit-test-case": "1.*",
"mikey179/vfsStream": "1.1.0",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"ext-openssl": "To accelerate private key generation."
},
"autoload": {
"psr-0": {
"KevinGH\\Box": "src/lib"
}
},
"bin": [
"bin/box"
],
"config": {
"bin-dir": "bin",
"platform": {
"php": "5.3.3"
},
"vendor-dir": "src/vendors"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}