-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "freibergergarcia/custom-post-types-taxonomies",
"version": "0.2.0",
"description": "Custom Post Types and Taxonomies",
"license": "GPL-2.0-only",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"post types",
"post type",
"taxonomy",
"taxonomies"
],
"authors": [
{
"name": "Bruno",
"email": "freibergergarcia@gmail.com"
}
],
"support": {
"src": "https://github.com/freibergergarcia/custom-post-types-taxonomies",
"issues": "https://github.com/freibergergarcia/custom-post-types-taxonomies/issues"
},
"require": {
"php": ">=8.0",
"psr/log": "~1.0",
"php-di/php-di": "^7.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.13",
"wp-coding-standards/wpcs": "^3.0",
"wp-phpunit/wp-phpunit": "^6.4",
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"Custom_PTT\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"Custom_PTT\\Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {
"phpcs": "./vendor/bin/phpcs",
"phpcbf": "./vendor/bin/phpcbf",
"unit": "./vendor/bin/phpunit --no-coverage tests/unit",
"coverage": "./vendor/bin/phpunit --coverage-html=coverage/html tests/unit"
}
}