-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
37 lines (37 loc) · 960 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
{
"name": "sebudesign/buckaroo-json",
"description": "Connect to the JSON API from Buckaroo",
"keywords": ["PHP", "Buckaroo", "JSON"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sven Buijsrogge",
"email": "sven@sebudesign.nl"
}
],
"support": {
"issues": "https://github.com/SeBuDesign/Buckaroo-PHP-JSON/issues",
"source": "https://github.com/SeBuDesign/Buckaroo-PHP-JSON"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"fzaninotto/faker": "^1.6",
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"SeBuDesign\\BuckarooJson\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SeBuDesign\\BuckarooJson\\Tests\\": "tests/"
}
}
}