forked from Antidot-be/bpost-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 790 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "urbanraccoon/bpost-api-library",
"version": "3.4.11",
"type": "library",
"description": "bpost API library is a PHP library to communicate with the bpost API.",
"homepage": "https://github.com/UrbanRaccoon/bpost-api-library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pieter Marchand",
"email": "pieter.marchand@yeastconsulting.be",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-curl": "*",
"ext-mbstring": "*",
"psr/log": "~2.0",
"ext-dom": "20031129",
"ext-SimpleXML": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.3"
},
"autoload": {
"psr-4": {
"Bpost\\BpostApiClient\\": "src/"
},
"classmap": [
"src/tijsverkoyen_classes.php"
]
}
}