-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.07 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
{
"require": {
"php": "^8.2",
"verifiedjoseph/gotify-api-php": "^1.7",
"verifiedjoseph/ntfy-php-library": "^4.0",
"symfony/yaml": "^7.1.1",
"debril/feed-io": "^6.0",
"guzzlehttp/guzzle": "^7.4.5"
},
"autoload": {
"psr-4": {
"Vigilant\\": "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.0",
"squizlabs/php_codesniffer": "^3.7",
"bizurkur/mockfs": "^0.2.0"
},
"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": {
"allow-plugins": {
"php-http/discovery": false
}
}
}