-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.26 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
{
"name": "verifiedjoseph/ntfy-php-library",
"description": "PHP library for interacting with a Ntfy server",
"keywords": ["Ntfy"],
"homepage": "https://github.com/VerifiedJoseph/ntfy-php-library",
"license": "MIT",
"authors": [
{
"name": "VerifiedJoseph",
"homepage": "https://github.com/VerifiedJoseph"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4"
},
"autoload": {
"psr-4": {
"Ntfy\\": "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": "^3.7"
},
"scripts": {
"lint": "phpstan && phpcs .",
"lint-phpstan": "phpstan",
"lint-phpcs": "phpcs . ",
"lint-phpcs-action": "phpcs . --report=checkstyle | cs2pr",
"test": "phpunit --colors --coverage-html coverage-reports",
"fix": "phpcbf ."
},
"config": {
"platform": {
"php": "8.2"
}
}
}