-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 806 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 806 Bytes
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
{
"name": "donatj/pushover",
"type": "library",
"description": "Simple Pushover.net client",
"keywords": [
"Pushover",
"pushover.net"
],
"license": "MIT",
"authors": [
{
"name": "Jesse G. Donat",
"email": "donatj@gmail.com",
"homepage": "https://donatstudios.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"donatj\\Pushover\\": "src/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"donatj/mock-webserver": "^2.10",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "=3.13.2",
"corpus/coding-standard": "=0.9.0",
"friendsofphp/php-cs-fixer": "=3.95.1",
"donatj/drop": "^1.1",
"phpstan/phpstan": "=2.1.54"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}