-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 893 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 893 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "barnebys/vms",
"description": "VMS PHP Client SDK",
"version": "1.4.0",
"type": "library",
"keywords": [
"barnebys",
"valuemystuff",
"vms",
"auctions",
"valuation",
"appraisal"
],
"homepage": "https://www.valuemystuff.com",
"license": "MIT",
"authors": [
{
"name": "Johan Dahl",
"email": "johan.dahl@barnebys.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"symfony/var-dumper": "^4.3",
"symfony/dotenv": "^5.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": ["./vendor/bin/phpunit --bootstrap vendor/autoload.php --testdox tests"]
},
"autoload": {
"psr-4": {
"Vms\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vms\\Tests\\": "tests"
}
}
}