-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 959 Bytes
/
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
{
"name": "achttienvijftien/wp-republish",
"description": "Republish WordPress posts.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"AchttienVijftien\\Plugin\\Republish\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AchttienVijftien\\Plugin\\Republish\\Test\\": "tests/php/"
}
},
"authors": [
{
"name": "1815",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"wp-phpunit/wp-phpunit": "^5.8",
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"format": "phpcbf --report-summary --report-source src",
"lint": "phpcs src"
}
}