forked from mautic/plugin-grapesjs-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.29 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
{
"name": "mautic/grapes-js-builder-bundle",
"description": "GrapesJS Builder with MJML support for Mautic",
"type": "mautic-plugin",
"version": "1.0.1",
"keywords": ["mautic","plugin","integration"],
"require": {
"mautic/composer-plugin": "^1.0",
"php": "^7.2"
},
"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"
}