-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.08 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "plusforta/postmark-bundle",
"description": "This bundle enables postmark template emails for symfony",
"type": "symfony-bundle",
"authors": [
{
"name": "Jan Hentschel",
"email": "jan.hentschel@plusforta.de"
}
],
"require": {
"webmozart/assert": "^1.11.0",
"wildbit/postmark-php": "^v4.0.5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"PlusForta\\PostmarkBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PlusForta\\PostmarkBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/config": "^6.3",
"symfony/dependency-injection": "^6.3",
"vimeo/psalm": "^5.15.0",
"symfony/http-kernel": "^6.3",
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4.0",
"squizlabs/php_codesniffer": "^3.7.2",
"phpmd/phpmd": "^2.13.0",
"symfony/phpunit-bridge": "^6.3"
}
}