This repository was archived by the owner on May 26, 2024. It is now read-only.
forked from OpenWebconcept/plugin-pdc-leges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.31 KB
/
composer.json
File metadata and controls
51 lines (51 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
46
47
48
49
50
51
{
"name": "plugin/pdc-leges",
"description": "PDC Leges Plugin",
"authors": [
{
"name": "Yard Internet",
"email": "info@yard.nl",
"homepage": "https://www.yardinternet.nl"
}
],
"type": "wordpress-plugin",
"repositories": [
{
"type": "vcs",
"url": "git@github.com:OpenWebconcept/plugin-pdc-base.git"
}
],
"require": {
"php": ">=7.0",
"plugin/pdc-base": "^3.0.0"
},
"require-dev": {
"10up/wp_mock": "~0.4",
"mockery/mockery": "*",
"phpunit/phpunit": "~8.0",
"phpdocumentor/phpdocumentor": "2.*",
"squizlabs/php_codesniffer": "^3.0.2"
},
"autoload": {
"psr-4": {
"OWC\\PDC\\Leges\\": "./src/Leges"
}
},
"autoload-dev": {
"psr-4": {
"OWC\\PDC\\Leges\\Tests\\": "./tests"
}
},
"scripts": {
"unit": "clear && ./vendor/bin/phpunit --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"
],
"cs": "./vendor/bin/phpcs",
"csfix": "./vendor/bin/phpcbf",
"docs": "./vendor/bin/phpdoc -d ./src/Leges -t ./docs"
}
}