forked from cmpayments/crate-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (53 loc) · 1.43 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
{
"name": "cmpayments/crate-lib",
"description": "A library for simplifying the PHAR build process.",
"keywords": ["phar"],
"homepage": "https://github.com/cmpayments/crate-lib",
"license": "MIT",
"authors": [
{
"name": "Bas Peters",
"email": "bp@cm.nl",
"homepage": "https://github.com/baspeters"
},
{
"name": "Kevin Herrera",
"email": "kevin@herrera.io",
"homepage": "http://kevin.herrera.io"
}
],
"support": {
"issues": "https://github.com/cmpayments/crate-lib/issues"
},
"require": {
"php": ">=5.3.3",
"ext-phar": "*",
"tedivm/jshrink": "~1.0",
"phine/path": "~1.0"
},
"require-dev": {
"herrera-io/annotations": "~1.0",
"herrera-io/phpunit-test-case": "1.*",
"mikey179/vfsStream": "1.1.0",
"phpunit/phpunit": "3.7.*",
"phpseclib/phpseclib": "~0.3"
},
"suggest": {
"herrera-io/annotations": "For compacting annotated docblocks.",
"phpseclib/phpseclib": "For verifying OpenSSL signed phars without the phar extension."
},
"autoload": {
"psr-0": {
"CmPayments\\Crate": "src/lib"
}
},
"config": {
"bin-dir": "bin",
"vendor-dir": "src/vendors"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}