-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.36 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
{
"name": "timohubois/post-type-archive-pages-and-permalink-settings",
"description": "Set the archive for your custom post types to associate them with a specific page and control the permalinks for single custom post type pages and custom taxonomies.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Timo Hubois",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-stubs/wordpress-stubs": "^6.4",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"rector/rector": "^1.2",
"wp-cli/wp-cli-bundle": "^2.8",
"wp-coding-standards/wpcs": "^3.0"
},
"autoload": {
"psr-4": {
"Ptatap\\": "classes/"
}
},
"scripts": {
"php:lint": "vendor/bin/phpcs --standard=phpcs.xml .",
"php:lint:fix": "vendor/bin/phpcbf --standard=phpcs.xml .",
"rector:run": "vendor/bin/rector process"
}
}