-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·54 lines (49 loc) · 1.29 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
{
"name": "weezqyd/vultr-php",
"description": "Vultr PHP API client,",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Master Weez",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/weezqyd/vultr-php/issues",
"source": "https://github.com/weezqyd/vultr-php"
},
"require": {
"php": ">=7.0",
"weezqyd/http-adapters": "^0.0.1"
},
"require-dev": {
"kriswallsmith/buzz" : "~0.10",
"guzzlehttp/guzzle" : "~5.0|~6.0",
"phpunit/phpunit" : "~6.1",
"friendsofphp/php-cs-fixer" : "~1.11",
"mockery/mockery": "^0.9.9",
"codacy/coverage": "dev-master"
},
"suggest": {
"kriswallsmith/buzz": "To use BuzzAdapter, require kriswallsmith/buzz:~0.10.",
"guzzlehttp/guzzle" : "To use GuzzleHttpAdapter, require guzzlehttp/guzzle:~5.0|~6.0."
},
"autoload": {
"psr-4": {
"Vultr\\": "src/"
}
},
"scripts":{
"phpunit":"vendor/bin/phpunit"
},
"autoload-dev": {
"psr-4": {
"Vultr\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"bin-dir": "vendor/bin"
}
}