-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
68 lines (68 loc) · 1.83 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
{
"name": "infinum/eightshift-forms-utils",
"description": "Eightshift Forms Utils library for shared functionality",
"keywords": [
"composer",
"form",
"forms",
"email",
"Mailchimp",
"plugin",
"blocks",
"Gutenberg",
"WordPress"
],
"homepage": "https://eightshift.com/",
"license": "MIT",
"authors": [
{
"name": "Eightshift team",
"email": "[email protected]",
"homepage": "https://eightshift.com/",
"role": "Developer / IT Manager"
}
],
"support": {
"issues": "https://github.com/infinum/eightshift-forms/issues",
"source": "https://github.com/infinum/eightshift-forms"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"infinum/eightshift-coding-standards": "^3.0.0",
"php-parallel-lint/php-parallel-lint": "^v1.4.0",
"php-stubs/wordpress-stubs": "v6.6.2",
"szepeviktor/phpstan-wordpress": "^v1.3.5"
},
"require": {
"php": ">=8.3",
"infinum/eightshift-libs": "^9.3.1"
},
"suggest": {
"ext-pcov": "* || This extension is used for code coverage generation. Use either pcov, or xdebug, but not both.",
"ext-xdebug": "^3.0.0 || This extension is used for code coverage generation. Use either pcov, or xdebug, but not both."
},
"autoload": {
"psr-4": {
"EightshiftFormsUtils\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test:types": "@php ./vendor/bin/phpstan analyze",
"test:standards": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 8.3-",
"standards:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --runtime-set testVersion 8.3-",
"test": [
"@test:standards",
"@test:types"
]
}
}