-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
44 lines (44 loc) · 1.12 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
{
"name": "escopecz/mautic-form-submit",
"type": "library",
"description": "A library for submitting Mautic form from a 3rd pary PHP app",
"keywords": [
"mautic"
],
"license": "MIT",
"authors": [
{
"name": "John Linhart",
"email": "[email protected]",
"homepage": "https://mautic.org",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit" : "^10.5",
"scrutinizer/ocular": "~1.9",
"rector/rector": "^1.2",
"phpstan/phpstan": "^1.11",
"symplify/easy-coding-standard": "^12.3"
},
"autoload": {
"psr-4": {
"Escopecz\\MauticFormSubmit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Escopecz\\MauticFormSubmit\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpdbg -qrr vendor/bin/phpunit",
"cs": "vendor/bin/ecs --fix",
"phpstan": "vendor/bin/phpstan analyse src tests -l 5"
}
}