-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
74 lines (74 loc) · 2.68 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
{
"name": "serendipity_hq/bundle-aws-ses-monitor",
"type": "symfony-bundle",
"description": "Symfony bundle to monitor AWS SES bounces, complaints and deliveries through SNS. Comes with a command to fully configure the topics and includes configurable SwiftMailer filter to avoid sending emails to bounced and complained emails.",
"keywords": ["aws", "ses", "sns", "bounce", "complaints", "blacklist", "swiftmailer"],
"homepage": "https://github.com/Aerendir/bundle-aws-ses-monitor",
"license": "MIT",
"support": {
"docs": "https://github.com/Aerendir/bundle-aws-ses-monitor/tree/dev/docs",
"issues": "https://github.com/Aerendir/bundle-aws-ses-monitor/issues"
},
"authors": [
{
"name": "Adamo Aerendir Crespi",
"email": "aerendir@serendipityhq.com"
}
],
"require": {
"php": "^7.4|^8.0",
"aws/aws-php-sns-message-validator": "^1.5",
"aws/aws-sdk-php": "^3.39.0",
"aws/aws-sdk-php-symfony": "^2.0",
"doctrine/common": "^2.4 || ^3.0",
"doctrine/doctrine-bundle": "^1.7 || ^2.0",
"doctrine/orm": "^2.5 || ^3.0",
"symfony/framework-bundle": "~4.4|~5.4|~6.0|~7.0",
"symfony/http-kernel": "~4.4|~5.4|~6.0|~7.0",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/yaml": "~4.4|~5.4|~6.0|~7.0",
"thecodingmachine/safe": "^1.0|^2.0"
},
"require-dev": {
"ext-ast": "*",
"bamarni/composer-bin-plugin": "^1.4",
"phpstan/phpstan": "1.12.8",
"phpstan/phpstan-doctrine": "1.5.5",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-symfony": "1.4.12",
"rector/rector": "1.2.10",
"roave/security-advisories": "dev-master",
"serendipity_hq/rector-config": "^1.0",
"symfony/console": "~4.4|~5.4|~6.0",
"symfony/var-dumper": "~4.4|~5.4|~6.0",
"thecodingmachine/phpstan-safe-rule": "v1.2.0"
},
"autoload": {
"psr-4": {
"SerendipityHQ\\Bundle\\AwsSesMonitorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SerendipityHQ\\Bundle\\AwsSesMonitorBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true,
"symfony/flex": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}