forked from php-mod/curl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 927 Bytes
/
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
{
"name": "kubotak-is/hhcurl",
"description": "cURL class for HHVM/Hack",
"keywords": ["curl", "HHVM", "hack"],
"homepage": "https://github.com/kubotak-is/hhcurl",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "php-curl-class",
"homepage": "https://github.com/php-curl-class"
},
{
"name": "Hassan Amouhzi",
"email": "[email protected]",
"homepage": "http://hassan.amouhzi.com"
},
{
"name": "user52",
"homepage": "https://github.com/user52"
},
{
"name": "kubotak",
"homepage": "https://github.com/kubotak-is"
}
],
"require": {
"hhvm": ">=3.15",
"ext-curl": "*",
"hhvm/hhvm-autoload": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"91carriage/phpunit-hhi": "^5.7.1",
"squizlabs/php_codesniffer": "~2.1"
},
"autoload": {
"psr-4": {
"HHCurl\\": "src/"
}
}
}