-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.11 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.11 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
36
37
38
39
40
41
42
{
"name": "sectsect/wp-tag-order",
"description": "Sort the tags manually in individual posts on wordpress.",
"keywords": ["github", "wordpress", "plugin", "tags", "order"],
"type": "wordpress-plugin",
"require": {
"php": ">=8.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^9.5",
"yoast/phpunit-polyfills": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"phpstan/phpstan": "^2.0",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0"
},
"license": "GPL-3.0+",
"authors": [
{
"name": "sect",
"homepage": "https://github.com/sectsect"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.0"
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2048M"
}
}