-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 2.47 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
{
"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": "hugo@alliau.me"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true,
"ocramius/package-versions": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"phpstan": "phpstan analyze --ansi",
"rector": "rector",
"rector@ci": "rector --dry-run",
"ecs": "ecs --fix -v",
"ecs@ci": "ecs -v",
"phpunit": "phpunit",
"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": ["@composer bin all install --ansi", "@auto"],
"post-update-cmd": ["@composer bin all update --ansi", "@auto"]
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"phpunit/phpunit": "^9.1 || ^10.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/mailer": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"behat/behat": "^3.6",
"friends-of-behat/symfony-extension": "^2.2",
"nyholm/psr7": "^1.8",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/psr7-pack": "^1.0"
},
"autoload": {
"psr-4": {
"Kocal\\SymfonyMailerTesting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"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/"
}
},
"extra": {
"bamarni-bin": {
"target-directory": "tools"
}
}
}