-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 968 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 968 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
{
"name": "cloudforest/api-client-php",
"description": "PHP client for the CloudForest Marketplace API",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.8",
"phpstan/phpdoc-parser": "^1.33",
"opis/json-schema": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"CloudForest\\ApiClientPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"phpcs:check": "./vendor/bin/php-cs-fixer check",
"phpcs:fix": "./vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse",
"phpunit": "./vendor/bin/phpunit",
"schema": "CloudForest\\ApiClientPhp\\Scripts\\JsonSchema::run"
}
}