-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
35 lines (35 loc) · 856 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
{
"name": "thejacer87/canadapost-api",
"type": "library",
"description": "PHP Canada Post API",
"keywords": ["canadapost", "api", "wrapper", "tracking", "shipping", "rate", "rating"],
"license": "MIT",
"authors": [
{
"name": "Jace Bennest",
"email": "jacebennest87@gmail.com"
}
],
"require": {
"php": "^5.5.9 || ^5.6 || ^7.0",
"guzzlehttp/guzzle": "^6.0",
"openlss/lib-array2xml": "^0.5.1",
"psr/log": "^1.0",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"autoload": {
"psr-4": {
"CanadaPost\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CanadaPost\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}