-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 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
43
{
"name": "yellow/php-sdk",
"type": "library",
"description": "Yellow Bitcoin Payment SDK ",
"keywords": [
"bitcoin",
"http",
"YellowPay",
"payments",
"curl",
"client",
"HTTP client"
],
"homepage": "http://yellowpay.co/en/",
"license": "MIT",
"authors": [
{
"name": "Tawfek Daghistani",
"email": "[email protected]",
"homepage": "https://github.com/tawfekov"
}
],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~5.0",
"ext-curl": "*",
"ext-hash" : "~1.0",
"ext-json" : "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Yellow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yellow\\Tests\\": "tests/"
}
}
}