This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
70 lines (70 loc) · 2.14 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
{
"name": "freshheads/mailer-bundle",
"description": "This bundle makes it easy to compose email messages for the symfony mailer.",
"type": "symfony-bundle",
"keywords": [
"email",
"mail",
"mailer",
"twig",
"template"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Schuurmans",
"email": "kevin.schuurmans@freshheads.com",
"homepage": "https://freshheads.dev",
"role": "Developer"
},
{
"name": "Misha Klomp",
"email": "misha.klomp@freshheads.com",
"homepage": "https://freshheads.dev",
"role": "Developer"
},
{
"name": "Joris van de Sande",
"email": "joris.van.de.sande@freshheads.com",
"homepage": "https://freshheads.dev",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"symfony/config": "^5.4 | ^6.0",
"symfony/console": "^5.4 | ^6.0",
"symfony/dependency-injection": "^5.4 | ^6.0",
"symfony/http-kernel": "^5.4 | ^6.0",
"symfony/mailer": "^5.4 | ^6.0",
"symfony/twig-bridge": "^5.4 | ^6.0",
"symfony/yaml": "^5.4 | ^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.4 | ^6.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "FH\\Bundle\\MailerBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"FH\\Bundle\\MailerBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit --colors=always --testdox",
"phpstan": "composer install --working-dir=.tools/phpstan && .tools/phpstan/vendor/bin/phpstan --memory-limit=4G analyse -c phpstan.neon",
"php-lint": "composer update --working-dir=.tools/php-cs-fixer && .tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --ansi --verbose --diff --dry-run"
},
"support": {
"issues": "https://github.com/freshheads/FHMailerBundle/issues"
}
}