-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.3 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "openstatus/sdk-php",
"description": "Official PHP SDK for Openstatus",
"license": "MIT",
"type": "library",
"keywords": ["openstatus", "monitoring", "status-page", "uptime", "sdk"],
"homepage": "https://github.com/openstatusHQ/sdk-php",
"require": {
"php": ">=8.4",
"ext-json": "*",
"google/protobuf": "^4.29",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^3.0",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"phpstan/phpstan": "^1.12",
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"Openstatus\\Sdk\\": "src/",
"Openstatus\\": "src/Gen/Openstatus/",
"GPBMetadata\\": "src/Gen/GPBMetadata/"
},
"files": [
"src/Stubs/GPBMetadataStubs.php"
]
},
"autoload-dev": {
"psr-4": {
"Openstatus\\Sdk\\Tests\\": "tests/"
}
},
"scripts": {
"regen": "bash scripts/regen.sh",
"test": "phpunit",
"analyse": "phpstan analyse",
"fmt": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}