-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
71 lines (71 loc) · 2.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vultr/vultr-php",
"description": "The Official Vultr API PHP Wrapper.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/vultr/vultr-php",
"keywords": [
"vultr", "vultr-api", "vultr-api-version-2", "vultr-php",
"psr-7", "psr-17", "psr-18",
"http", "client", "discovery", "message", "factory"
],
"authors": [
{
"name": "The Constant Company, LLC.",
"email": "opensource@vultr.com",
"homepage": "https://www.vultr.com"
},
{
"name": "Vinnie Marone",
"email": "vinnie.marone35@gmail.com"
}
],
"prefer-stable": true,
"minimum-stability": "beta",
"suggest": {
"guzzlehttp/guzzle": "A PSR Compatible HTTP Client Library",
"symfony/http-client": "A PSR Compatible HTTP Client Library along with nyholm/psr7",
"php-http/curl-client": "A PSR Compatible HTTP Client Library"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"json-mapper/json-mapper": "^2.14",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.0",
"php-http/discovery": "^1.14"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"phpunit/phpunit": "9.5.27",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7.2"
},
"autoload": {
"psr-4": {
"Vultr\\VultrPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vultr\\VultrPhp\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"cover": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --extensions=php -s",
"beautify": "vendor/bin/phpcbf --extensions=php -v"
},
"support": {
"issues": "https://github.com/vultr/vultr-php/issues",
"source": "https://github.com/vultr/vultr-php",
"docs": "https://www.vultr.com/api/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}