-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 804 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 804 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
{
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
}
],
"name": "wildbit/postmark-php",
"license": "MIT",
"description": "The officially supported client for Postmark (https://postmarkapp.com)",
"require": {
"php": "~8.1 || ~8.2|| ~8.3 || ~8.4",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.40"
},
"autoload": {
"psr-0": {
"Postmark\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"src/",
"tests/"
]
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
}
}
}