-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
101 lines (100 loc) · 2.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "infinum/eightshift-forms",
"description": "Eightshift Forms plugin for building developer-friendly Gutenberg-ready forms in WordPress",
"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": {
"brain/faker": "dev-master",
"brain/monkey": "^2.6.2",
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"infinum/eightshift-coding-standards": "3.0.0",
"php-parallel-lint/php-parallel-lint": "v1.4.0",
"pestphp/pest": "^v1.23.1",
"php-stubs/wordpress-stubs": "v6.6.2",
"phpunit/phpunit": "^9.6.21",
"szepeviktor/phpstan-wordpress": "^v1.3.5",
"wp-cli/wp-cli": "^v2.11.0"
},
"require": {
"php": ">=8.3",
"erusev/parsedown": "^1.7.4",
"infinum/eightshift-forms-utils": "^3.0.18"
},
"autoload": {
"psr-4": {
"EightshiftForms\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test:types": "@php ./vendor/bin/phpstan analyze",
"test:standards": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 8.3-",
"test:unit": "@php ./vendor/bin/pest --group=unit",
"test:unit-report": "@php ./vendor/bin/pest --group=unit --log-junit tests/coverage/report.xml",
"test:coverage": "@php ./vendor/bin/pest --group=unit --coverage",
"standards:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --runtime-set testVersion 8.3-",
"test": [
"@test:standards",
"@test:types",
"@test:unit"
],
"prefix-namespaces": [
"@php strauss.phar",
"composer dump-autoload"
],
"post-install-cmd": [
"@php strauss.phar",
"composer dump-autoload"
],
"post-update-cmd": [
"@php strauss.phar",
"composer dump-autoload"
]
},
"extra": {
"strauss": {
"namespace_prefix": "EightshiftFormsVendor",
"exclude_from_prefix": {
"file_patterns": ["/Example.php$/"]
}
}
}
}