-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (40 loc) · 921 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
{
"name": "bittools/bseller-php",
"description": "This is the official PHP SDK for integration with BSeller.",
"type": "library",
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "^5.3",
"monolog/monolog": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"autoload": {
"psr-4": {
"BSeller\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"BSellerTest\\": "test/"
}
},
"license": "MIT",
"authors": [
{
"name": "Julio Reis",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"minimum-stability": "stable",
"prefer-stable": true
}