forked from Kocal/SymfonyMailerTesting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.21 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": "kocal/symfony-mailer-testing",
"description": "Test your emails with Behat and Cypress, when using the Symfony Mailer component.",
"license": "MIT",
"authors": [
{
"name": "Hugo Alliaume",
"email": "kocal@live.fr"
}
],
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "phpstan analyze --ansi",
"php-cs-fixer": "php-cs-fixer fix -v",
"php-cs-fixer@ci": "php-cs-fixer fix -v --diff --dry-run",
"phpunit": "phpunit",
"phpspec": "phpspec --ansi",
"behat": "behat --colors",
"server-start": "APP_ENV=test ./bin/symfony server:start --no-tls --dir fixtures/applications/Symfony --daemon",
"server-stop": "APP_ENV=test ./bin/symfony server:stop --dir fixtures/applications/Symfony",
"auto": [
"cd fixtures/applications/Symfony && APP_ENV=test bin/console cache:clear"
],
"post-install-cmd": [
"@auto"
],
"post-update-cmd": [
"@auto"
]
},
"require": {
"php": "^7.3",
"ext-json": "*",
"symfony/mailer": "^4.4 || ^5.0",
"webmozart/assert": "^1.8"
},
"require-dev": {
"behat/behat": "^3.6",
"friends-of-behat/symfony-extension": "^2.1",
"friendsofphp/php-cs-fixer": "^2.16",
"nyholm/psr7": "^1.2",
"phpspec/phpspec": "^6.1",
"phpstan/phpstan": "^0.12.23",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpstan/phpstan-symfony": "^0.12.6",
"phpstan/phpstan-webmozart-assert": "^0.12.4",
"phpunit/phpunit": "^8.5.2",
"sensio/framework-extra-bundle": "^5.5",
"symfony/framework-bundle": "^4.4.1 || ^5.0",
"symfony/psr-http-message-bridge": "^2.0"
},
"autoload": {
"psr-4": {
"Kocal\\SymfonyMailerTesting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec/",
"Kocal\\SymfonyMailerTesting\\Tests\\": "tests/",
"Kocal\\SymfonyMailerTesting\\Tests\\Bridge\\Behat\\": "tests/Bridge/Behat/bootstrap/",
"Kocal\\SymfonyMailerTesting\\Fixtures\\": "fixtures/",
"Kocal\\SymfonyMailerTesting\\Fixtures\\Applications\\": "fixtures/applications/",
"Kocal\\SymfonyMailerTesting\\Fixtures\\Applications\\Symfony\\App\\": "fixtures/applications/Symfony/src/"
}
}
}