-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.04 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
{
"name": "serhiy/pushover",
"description": "Light, simple and fast, yet comprehensive wrapper for the Pushover API.",
"license": "MIT",
"type": "library",
"keywords": [
"pushover",
"pushover.net",
"wrapper",
"client"
],
"authors": [
{
"name": "Serhiy Lunak",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/slunak/pushover-php",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34",
"friendsofphp/php-cs-fixer": "^3.61",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11.0",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"Serhiy\\Pushover\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}