-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
38 lines (38 loc) · 1.36 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
{
"name": "mautic/grapes-js-builder-bundle",
"description": "GrapesJS Builder with MJML support for Mautic",
"type": "mautic-plugin",
"keywords": [
"mautic",
"plugin",
"integration"
],
"extra": {
"install-directory-name": "GrapesJsBuilderBundle"
},
"require-dev": {
"phpstan/phpstan": "^0.11.12",
"symplify/easy-coding-standard": "^6.0"
},
"scripts": {
"test": [
"@phpunit",
"@fixcs",
"@phpstan"
],
"quicktest": [
"@unit"
],
"phpunit": "../../bin/phpunit -d memory_limit=2048M --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=all",
"unit": "../../bin/phpunit -d memory_limit=2048M --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=unit",
"coverage": "../../bin/phpunit -d memory_limit=2048M --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=all --coverage-text --coverage-html=Tests/Coverage",
"phpstan": "vendor/bin/phpstan analyse --autoload-file=../../vendor/autoload.php --level=max Config Connection Entity Form Integration Migrations Sync Tests",
"csfixer": "vendor/bin/ecs check .",
"fixcs": "vendor/bin/ecs check . --fix"
},
"minimum-stability": "dev",
"require": {
"php": ">=7.4.0 <8.1",
"mautic/core-lib": "^4.0"
}
}