-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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
{
"name": "heikkivihersalo/custom-post-types",
"description": "Flexible Laravel style custom post types for WordPress",
"type": "library",
"license": "GPL-2.0-or-later",
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"version": "0.1.0",
"autoload": {
"psr-4": {
"HeikkiVihersalo\\CustomPostTypes\\": "src/"
}
},
"authors": [
{
"name": "Heikki Vihersalo",
"email": "heikki@vihersalo.fi"
}
],
"require": {},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "dev-develop as 9.3.5",
"phpcsstandards/phpcsutils": "^1.0",
"phpcsstandards/phpcsextra": "^1.2.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "9.*",
"squizlabs/php_codesniffer": "*",
"yoast/phpunit-polyfills": "^1.0",
"wp-coding-standards/wpcs": "^3.0",
"wp-phpunit/wp-phpunit": "^6.0"
}
}