forked from acquia/mc-cs-plugin-custom-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 2.09 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
{
"name": "acquia/mc-cs-plugin-custom-objects",
"description": "This plugin adds custom objects feature.",
"type": "mautic-plugin",
"config": {
"process-timeout": 2000
},
"keywords": [
"custom",
"objects",
"mautic",
"plugin"
],
"extra": {
"install-directory-name": "CustomObjectsBundle",
"display-name": "Custom Objects"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"email": "engineering@acquia.com",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/acquia/mc-cs-plugin-custom-objects/issues",
"wiki": "https://github.com/acquia/mc-cs-plugin-custom-objects/wiki"
},
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"mautic/core-lib": "^4.3"
},
"require-dev": {
"theofidry/alice-data-fixtures": "^1.1"
},
"scripts": {
"test": [
"@phpunit",
"@csfixer"
],
"quicktest": [
"@unit",
"@csfixer"
],
"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",
"functional": "../../bin/phpunit -d memory_limit=2048M --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=functional",
"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",
"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"
}
}