-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.31 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.31 KB
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
{
"name": "plugin/owc-gravityforms-bag-address",
"description": "Add a BAG address field to GravityForms",
"authors": [
{
"name": "Yard | Digital Agency",
"email": "info@yard.nl",
"homepage": "https://www.yard.nl"
}
],
"type": "wordpress-plugin",
"require": {
"php": ">=8.1"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.6",
"10up/wp_mock": "^1.1",
"friendsofphp/php-cs-fixer": "^3.75",
"symfony/var-dumper": "^6.4",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/wordpress-stubs": "^6.7"
},
"autoload": {
"psr-4": {
"Yard\\BAG\\": "./src/BAG"
}
},
"autoload-dev": {
"psr-4": {
"Yard\\BAG\\Tests\\": "./tests/Unit"
}
},
"scripts": {
"format": "./vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse --no-progress",
"unit": "clear && ./vendor/bin/phpunit --testdox --stderr --testsuite 'Unit Test Suite' --colors=always",
"unit-coverage": "clear && ./vendor/bin/phpunit --stderr --testsuite 'Unit Test Suite' --prepend tests/xdebug-filter.php --colors=always --coverage-html ./tests/coverage",
"integration": "clear && ./vendor/bin/phpunit --stderr --testsuite 'Integration Test Suite' --colors=always",
"test": [
"@unit",
"@integration"
]
}
}