-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcomposer.json
42 lines (42 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
41
42
{
"name": "antidot-be/bpost-api-library",
"version": "3.4.0",
"type": "library",
"description": "bpost API library is a PHP library to communicate with the bpost API.",
"homepage": "https://github.com/Antidot-be/bpost-api-library",
"license": "BSD",
"authors": [
{
"name": "Raphaël Pommier",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "kouinkouin",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Tijs Verkoyen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-curl": "*",
"ext-mbstring": "*",
"psr/log": "~1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.3"
},
"autoload": {
"psr-4": {
"Bpost\\BpostApiClient\\": "src/"
},
"classmap": [
"src/tijsverkoyen_classes.php"
]
}
}