1
0
mirror of https://github.com/ovh/php-ovh.git synced 2023-11-05 03:20:26 +01:00
php-ovh/composer.json

46 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "ovh/ovh",
"description": "Wrapper for OVHcloud APIs",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true,
"allow-plugins": {
"phpdocumentor/shim": true
}
},
"keywords": [
"api",
"client",
"authorization",
"authorisation",
"ovh",
"ovhcloud"
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^6.0||^7.0",
"ext-json": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpdocumentor/shim": "^3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {"Ovh\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Ovh\\tests\\": "test/"
}
},
"scripts": {
"phpdoc": "vendor/bin/phpdoc",
"phpcs": "vendor/bin/phpcs -sp --colors",
"phpcbf": "vendor/bin/phpcbf -sp",
"parallel-lint": "vendor/bin/parallel-lint src tests",
"phpunit": "vendor/bin/phpunit --colors=always"
}
}