forked from flowmailer/flowmailer-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 3.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "squeezely/flowmailer-php-sdk",
"description": "Flowmailers PHP SDK for api.flowmailer.net REST API",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Reyo Stallenberg",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/flowmailer/flowmailer-php-sdk/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"doctrine/collections": "^1.6 || ^2.0",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message": "^1.13",
"php-http/promise": "^1.1",
"phpdocumentor/reflection-docblock": "^5.3",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache-implementation": "^1.0 || ^2.0 || ^3.0",
"symfony/options-resolver": "^5.4 || ^6.0",
"symfony/property-access": "^5.4 || ^6.0",
"symfony/property-info": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/string": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"enqueue/simple-client": "^0.10.16",
"ergebnis/composer-normalize": "^2.6 || ^3.0",
"friendsofphp/php-cs-fixer": "^3.4",
"guzzlehttp/psr7": "^1.0",
"icanhazstring/composer-unused": "^0.7 || ^0.8",
"league/html-to-markdown": "^5.0",
"maglnet/composer-require-checker": "^2.0 || ^3.0 || ^4.0",
"nette/php-generator": "^3.6",
"nyholm/psr7": "^1.4",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.4",
"symfony/cache": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/var-dumper": "^5.4 || ^6.0"
},
"suggest": {
"enqueue/simple-client": "With enqueue you're able to queue sending of messages (on many different implementations). Please see docs.",
"guzzlehttp/promises": "To use Flowmailer::submitMessages (for sending multiple messages to Flowmailer in an async manner), require version ^2.0.",
"php-http/logger-plugin": "The LoggerPlugin converts requests, responses and exceptions to strings and logs them with a PSR3 compliant logger"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Flowmailer\\API\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flowmailer\\API\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyse": [
"composer validate --no-check-lock",
"phpstan analyse",
"composer-unused --no-ansi"
],
"fix": [
"php-cs-fixer fix --allow-risky=yes --config .php-cs-fixer.dist.php",
"composer validate --no-check-lock",
"composer normalize --no-update-lock"
],
"test": [
"XDEBUG_MODE=off php -dmemory_limit=1G -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit --coverage-html=coverage"
]
}
}