-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.25 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
{
"name": "plugin/pdc-samenwerkende-catalogi",
"description": "Samenwerkende Catalogi plugin, creates SC XML feed",
"authors": [
{
"name": "Yard Internet",
"email": "[email protected]",
"homepage": "https://www.yardinternet.nl"
}
],
"type": "wordpress-plugin",
"require": {
"php": "^7.4|^8.0",
"yahnis-elsts/plugin-update-checker": "^5.1"
},
"require-dev": {
"mockery/mockery": "*",
"phpunit/phpunit": "~8.0",
"10up/wp_mock": "~0.4",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"OWC\\PDC\\SamenwerkendeCatalogi\\": "./src/SamenwerkendeCatalogi"
}
},
"autoload-dev": {
"psr-4": {
"OWC\\PDC\\SamenwerkendeCatalogi\\Tests\\": "./tests"
}
},
"scripts": {
"unit": "clear && ./vendor/bin/phpunit --testdox --testsuite 'Unit Test Suite' --colors=always",
"unit-coverage": "clear && ./vendor/bin/phpunit --testsuite 'Unit Test Suite' --colors=always --coverage-html ./tests/coverage",
"integration": "clear && ./vendor/bin/phpunit --testsuite 'Integration Test Suite' --colors=always",
"test": [
"@unit",
"@integration"
],
"format": "vendor/bin/php-cs-fixer fix",
"package": "chmod +x ./bin/package.sh && ./bin/package.sh"
}
}