-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "2ndkauboy/unique-title-checker",
"description": "Checks if the title of a post, page or custom post type is unique and warn the editor if not.",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Bernhard Kau"
}
],
"minimum-stability": "stable",
"require-dev": {
"php": ">=5.6",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"yoast/wp-test-utils": "^1.2",
"mockery/mockery": "^1.6"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload-dev": {
"psr-4": {
"UniqueTitleChecker\\Tests\\Unit\\": "tests/Unit/"
}
},
"scripts": {
"test:unit": "phpunit -c phpunit.xml.dist --testsuite unit",
"test:integration": "phpunit -c phpunit-integration.xml.dist --testsuite integration"
}
}