-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
57 lines (57 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "traderinteractive/tol-api",
"description": "PHP client library for REST APIs",
"keywords": ["api"],
"authors": [
{
"name": "Chad Gray",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Spencer Rinehart",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Jonathan Gaillard",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"lib-curl": ">=7.15",
"fig/http-message-util": "^1.1",
"guzzlehttp/guzzle": "^7.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0",
"subjective-php/psr-cache-helper": "^2.0",
"traderinteractive/util": "^4.0"
},
"config": {
"sort-packages": true
},
"suggest": {
"subjective-php/psr-cache-mongodb": "Used for Caching with Mongo"
},
"require-dev": {
"helmich/mongomock": "^2.5",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.2",
"subjective-php/psr-cache-mongodb": "^3.0"
},
"autoload": {
"psr-4": { "TraderInteractive\\Api\\": "src" }
},
"autoload-dev": {
"psr-4": { "TraderInteractive\\Api\\": "tests" }
},
"scripts": {
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
}
}