-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
69 lines (69 loc) · 2.67 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
{
"name": "leuchtfeuer/mautic-mailjetadapter-bundle",
"description": "Plugin allows sending emails with Mailjet in batches via API and callback handling used for bounce management.",
"type": "mautic-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Leuchtfeuer Digital Marketing GmbH",
"email": "[email protected]"
},
{
"name": "Rahul Shinde",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0.0",
"mautic/core-lib": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"keywords": [
"mautic",
"plugin",
"integration"
],
"extra": {
"install-directory-name": "LeuchtfeuerMailjetAdapterBundle"
},
"autoload": {
"psr-4": {
"MauticPlugin\\LeuchtfeuerMailjetAdapterBundle\\": ""
}
},
"scripts": {
"test": [
"@phpunit",
"@csfixer"
],
"quicktest": [
"@unit",
"@csfixer"
],
"phpunit": "../../bin/phpunit -d memory_limit=1G --bootstrap ../../vendor/autoload.php --configuration phpunit.xml.dist --fail-on-warning --testsuite=all",
"unit": "../../bin/phpunit -d memory_limit=1G --bootstrap ../../vendor/autoload.php --configuration phpunit.xml.dist --fail-on-warning --testsuite=unit",
"functional": "../../bin/phpunit -d memory_limit=1G --bootstrap ../../vendor/autoload.php --configuration phpunit.xml.dist --fail-on-warning --testsuite=functional",
"coverage": "../../bin/phpunit -d memory_limit=1G --bootstrap ../../vendor/autoload.php --configuration phpunit.xml.dist --fail-on-warning --testsuite=all --coverage-text --coverage-html=Tests/Coverage",
"csfixer": "../../bin/php-cs-fixer fix . -v --dry-run --diff --using-cache=no --config=../../.php-cs-fixer.php",
"fixcs": "../../bin/php-cs-fixer fix . -v --using-cache=no --config=../../.php-cs-fixer.php",
"phpstan": "[ ! -f ../../var/cache/test/AppKernelTestDebugContainer.xml ] && (echo 'Building test cache ...'; APP_ENV=test APP_DEBUG=1 ../../bin/console > /dev/null 2>&1); php -d memory_limit=4G ../../bin/phpstan analyse ."
},
"repositories": [
{
"type": "git",
"url": "https://github.com/mautic/FOSOAuthServerBundle.git"
},
{
"type": "git",
"url": "https://github.com/mautic/SpBundle.git"
},
{
"type": "git",
"url": "https://github.com/mautic/SymfonyBridgeBundle.git"
}
]
}