-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
40 lines (39 loc) · 1.03 KB
/
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
{
"name": "james-azzopardi/starshipit",
"description": "Integrate easily with the starshipit.com API",
"keywords": ["starshipit", "shipping", "shopping"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "James Azzopardi",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.0",
"jms/serializer": "^1.2",
"psr/log": "^1.0",
"nesbot/carbon": "^1.21",
"symfony/yaml": "^3.1"
},
"require-dev": {
"phpspec/phpspec": "^3.0",
"henrikbjorn/phpspec-code-coverage": "^3.0",
"symfony/var-dumper": "^3.1",
"squizlabs/php_codesniffer": "~3.0.1",
"sebastian/phpcpd": "^2.0",
"satooshi/php-coveralls": "^v2.0.0",
"symfony/console": "^3.1"
},
"autoload": {
"psr-0": {
"Starshipit": "src/"
}
},
"config": {
"platform": {"php": "5.6"}
}
}