forked from Sylius/SyliusMailerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (75 loc) · 2.2 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
{
"name": "sylius/mailer-bundle",
"type": "symfony-bundle",
"description": "Mailers and e-mail template management for Symfony projects.",
"keywords": ["mailer", "email", "swiftmailer"],
"homepage": "http://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.com"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^7.2",
"symfony/config": "^3.4|^4.3",
"symfony/dependency-injection": "^3.4|^4.3",
"symfony/framework-bundle": "^3.4|^4.3",
"symfony/http-kernel": "^3.4|^4.3",
"twig/twig": "^2.12"
},
"require-dev": {
"phpspec/phpspec": "^5.0",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-webmozart-assert": "^0.11",
"phpunit/phpunit": "^7.0",
"sylius-labs/coding-standard": "^3.0",
"symfony/console": "^3.4|^4.3",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/twig-bundle": "^3.4|^4.3",
"vimeo/psalm": "^3.5"
},
"replace": {
"sylius/mailer": "self.version"
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\MailerBundle\\": "src/Bundle/",
"Sylius\\Component\\Mailer\\": "src/Component/"
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Bundle\\MailerBundle\\spec\\": "src/Bundle/spec/",
"Sylius\\Component\\Mailer\\spec\\": "src/Component/spec/"
},
"classmap": [
"src/Bundle/test/app/AppKernel.php"
]
},
"scripts": {
"analyse": [
"@php vendor/bin/ecs check src",
"@php vendor/bin/phpstan analyse --ansi -c phpstan.neon -l max src",
"@php vendor/bin/psalm"
],
"fix": [
"@php vendor/bin/ecs check src --fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
}
}