-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 991 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
43
44
45
46
47
48
{
"name": "fulfillment/postage-api",
"description": "A wrapper for Fulfillment's Postage API",
"keywords": [
"fulfillment",
"fulfillment.com"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/Fufillment/postage-api-php",
"authors":[
{
"name": "Matt Duncan"
},
{
"name": "James Weston"
},
{
"name": "Mike Garde",
"email": "[email protected]"
}
],
"require": {
"respect/validation": "1.1",
"netresearch/jsonmapper": "^4.0.0",
"fulfillment/api-wrapper": "0.2.0",
"foxxmd/php-utilities": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.4"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Fulfillment-dot-com/api-wrapper-php"
}
],
"autoload": {
"psr-4": {
"Fulfillment\\Postage\\": "src"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable" : true
}