-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.24 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
{
"name": "fusonic/messenger-mailer-bundle",
"license": "MIT",
"version": "2.3.0",
"description": "Symfony bundle for asynchronous e-mails with attachments through Symfony Messenger.",
"type": "symfony-bundle",
"authors": [
{
"name": "Fusonic GmbH",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fusonic\\MessengerMailerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\MessengerMailerBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/app/TestKernel.php"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"infection/infection": "^0.29",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.2",
"symfony/framework-bundle": "^6.2 || ^7.0",
"tomasvotruba/type-coverage": "^0.3"
},
"require": {
"php": ">=8.2",
"symfony/mime": "^6.2 || ^7.0",
"symfony/http-kernel": "^6.2 || ^7.0",
"symfony/config": "^6.2 || ^7.0",
"symfony/dependency-injection": "^6.2 || ^7.0",
"symfony/messenger": "^6.2 || ^7.0",
"symfony/filesystem": "^6.2 || ^7.0",
"symfony/yaml": "^6.2 || ^7.0",
"symfony/mailer": "^6.2 || ^7.0",
"symfony/twig-bridge": "^6.2 || ^7.0"
},
"scripts": {
"phpstan": "XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse",
"phpcs-check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer check -v --diff",
"phpcs-fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix -v",
"infection": "XDEBUG_MODE=coverage vendor/bin/infection",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox",
"test-coverage" : "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/phpunit/cobertura.xml --coverage-html=coverage/phpunit/html"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}