Skip to content

Commit 6347526

Browse files
committed
Fix key order
1 parent 4cd3e08 commit 6347526

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

composer.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
{
2+
"name": "creativecommons/creativecommons-base",
3+
"description": "The Creative Commons base theme",
4+
"license": "GPL-2.0-or-later",
25
"authors": [
36
{
47
"email": "hugo@creativecommons.org",
58
"name": "Hugo Solar"
69
}
710
],
8-
"description": "The Creative Commons base theme",
9-
"extra": {
10-
"installer-paths": {
11-
"../../mu-plugins/{$name}": [
12-
"type:wordpress-muplugin"
13-
]
14-
}
15-
},
16-
"license": "GPL-2.0-or-later",
17-
"name": "creativecommons/creativecommons-base",
11+
"type": "wordpress-theme",
12+
"require": {
13+
"composer/installers": "~1.0",
14+
"felipelavinz/queulat": "2019.4.2"
15+
},
16+
"require-dev": {
17+
"php-parallel-lint/php-parallel-lint": "^1.1",
18+
"phpcompatibility/php-compatibility": "^9.1",
19+
"squizlabs/php_codesniffer": "3.*",
20+
"wp-coding-standards/wpcs": "^2.0",
21+
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
22+
},
1823
"repositories": [
1924
{
2025
"no-api": true,
@@ -26,22 +31,17 @@
2631
"url": "https://wpackagist.org"
2732
}
2833
],
29-
"require": {
30-
"composer/installers": "~1.0",
31-
"felipelavinz/queulat": "2019.4.2"
32-
},
33-
"require-dev": {
34-
"php-parallel-lint/php-parallel-lint": "^1.1",
35-
"phpcompatibility/php-compatibility": "^9.1",
36-
"squizlabs/php_codesniffer": "3.*",
37-
"wp-coding-standards/wpcs": "^2.0",
38-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
39-
},
4034
"scripts": {
41-
"compat": "phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
35+
"compat": "phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
4236
"fix": "phpcbf --standard=WordPress . --extensions=php --ignore=vendor",
4337
"lint": "parallel-lint . --blame --exclude vendor",
4438
"sniff": "phpcs --standard=WordPress . --ignore=vendor --extensions=php"
4539
},
46-
"type": "wordpress-theme"
40+
"extra": {
41+
"installer-paths": {
42+
"../../mu-plugins/{$name}": [
43+
"type:wordpress-muplugin"
44+
]
45+
}
46+
}
4747
}

0 commit comments

Comments
 (0)