Skip to content

Commit 4d1c3fa

Browse files
committed
Normalize composer.json file
1 parent 65687a5 commit 4d1c3fa

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

composer.json

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
22
"name": "wp-cli/cache-command",
3-
"description": "Manages object and transient caches.",
43
"type": "wp-cli-package",
4+
"description": "Manages object and transient caches.",
55
"homepage": "https://github.com/wp-cli/cache-command",
6-
"support": {
7-
"issues": "https://github.com/wp-cli/cache-command/issues"
8-
},
96
"license": "MIT",
107
"authors": [
118
{
@@ -14,20 +11,15 @@
1411
"homepage": "https://runcommand.io"
1512
}
1613
],
17-
"minimum-stability": "dev",
18-
"prefer-stable": true,
19-
"autoload": {
20-
"psr-4": {
21-
"": "src/"
22-
},
23-
"files": [ "cache-command.php" ]
24-
},
2514
"require": {
2615
"wp-cli/wp-cli": "^2"
2716
},
2817
"require-dev": {
29-
"wp-cli/wp-cli-tests": "^0",
30-
"wp-cli/entity-command": "^1.3"
18+
"wp-cli/entity-command": "^1.3",
19+
"wp-cli/wp-cli-tests": "^0"
20+
},
21+
"config": {
22+
"sort-packages": true
3123
},
3224
"extra": {
3325
"branch-alias": {
@@ -52,17 +44,30 @@
5244
"transient type"
5345
]
5446
},
47+
"autoload": {
48+
"psr-4": {
49+
"": "src/"
50+
},
51+
"files": [
52+
"cache-command.php"
53+
]
54+
},
55+
"minimum-stability": "dev",
56+
"prefer-stable": true,
5557
"scripts": {
58+
"behat": "run-behat-tests",
5659
"lint": "run-linter-tests",
5760
"phpcs": "run-phpcs-tests",
5861
"phpunit": "run-php-unit-tests",
59-
"behat": "run-behat-tests",
6062
"prepare-tests": "install-package-tests",
6163
"test": [
6264
"@lint",
6365
"@phpcs",
6466
"@phpunit",
6567
"@behat"
6668
]
69+
},
70+
"support": {
71+
"issues": "https://github.com/wp-cli/cache-command/issues"
6772
}
6873
}

0 commit comments

Comments
 (0)