forked from ActiveCampaign/postmark-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.75 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gsteel/postmark-php",
"license": "MIT",
"description": "Postmark API Client Fork for PHP 8.1",
"keywords": [
"postmark",
"email",
"api-client"
],
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
},
"replace": {
"wildbit/postmark-php": "4.0.2"
},
"require": {
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"ext-json": "*",
"fig/http-message-util": "^1.1",
"php-http/discovery": "^1.14.3",
"psr/http-client": "^1.0.2",
"psr/http-factory": "^1.0.2",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"laminas/laminas-diactoros": "^3.5.0",
"php-http/curl-client": "^2.3.3",
"php-http/mock-client": "^1.6.1",
"phpunit/phpunit": "^10.5.41",
"psalm/plugin-phpunit": "^0.19.0",
"squizlabs/php_codesniffer": "^3.11.2",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Postmark\\": "src/Postmark/"
}
},
"autoload-dev": {
"psr-4": {
"Postmark\\Tests\\Unit\\": "tests/Unit/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}