-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.3 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "plugin/pdc-leges",
"type": "wordpress-plugin",
"description": "PDC Leges Plugin",
"config": {
"sort-packages": true,
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true
}
},
"authors": [
{
"name": "Yard | Digital Agency",
"email": "info@yard.nl",
"homepage": "https://www.yard.nl"
}
],
"require": {
"php": "^7.4|^8.0",
"cmb2/cmb2": "^2.11",
"wp-cli/wp-cli": "^2.0",
"yahnis-elsts/plugin-update-checker": "^5.1"
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"friendsofphp/php-cs-fixer": "^3.64",
"mockery/mockery": "*",
"php-stubs/wordpress-stubs": "^6.9",
"phpunit/phpunit": "^10.5.36",
"squizlabs/php_codesniffer": "^3.0.2"
},
"autoload": {
"psr-4": {
"OWC\\PDC\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"OWC\\PDC\\Leges\\Tests\\": "./tests"
}
},
"scripts": {
"test": "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",
"package": "chmod +x ./bin/package.sh && ./bin/package.sh",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php"
}
}