-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.22 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "verifiedjoseph/gotify-api-php",
"description": "PHP library for interacting with a Gotify server using the Gotify REST-API.",
"keywords": ["Gotify"],
"homepage": "https://github.com/VerifiedJoseph/gotify-api-php",
"license": "MIT",
"authors": [
{
"name": "VerifiedJoseph",
"homepage": "https://github.com/VerifiedJoseph"
}
],
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.5"
},
"autoload": {
"psr-4": {
"Gotify\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^4.0"
},
"scripts": {
"lint": "phpstan && phpcs",
"lint-phpstan": "phpstan",
"lint-phpcs": "phpcs",
"lint-phpcs-action": "phpcs --report=checkstyle | cs2pr",
"test": "phpunit --colors --testsuite=default --coverage-html=coverage-reports",
"fix": "phpcbf"
}
}