Skip to content

Commit 092bad0

Browse files
authored
Merge pull request #139 from cakephp/composer-normalize
Run composer normalize over composer.json
2 parents dec0bb9 + 9fc1030 commit 092bad0

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

composer.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"name": "cakephp/queue",
33
"description": "Queue plugin for CakePHP",
4-
"keywords": ["cakephp", "queue"],
5-
"homepage": "https://github.com/cakephp/queue",
6-
"type": "cakephp-plugin",
74
"license": "MIT",
5+
"type": "cakephp-plugin",
6+
"keywords": [
7+
"cakephp",
8+
"queue"
9+
],
810
"authors": [
911
{
1012
"name": "CakePHP Community",
1113
"homepage": "https://github.com/cakephp/queue/graphs/contributors"
1214
}
1315
],
16+
"homepage": "https://github.com/cakephp/queue",
1417
"support": {
1518
"issues": "https://github.com/cakephp/queue/issues",
1619
"forum": "https://stackoverflow.com/tags/cakephp",
@@ -29,21 +32,27 @@
2932
"enqueue/fs": "^0.10",
3033
"phpunit/phpunit": "^8.5 || ^9.3"
3134
},
35+
"suggest": {
36+
"cakephp/bake": "Required if you want to generate jobs.",
37+
"cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs."
38+
},
3239
"autoload": {
3340
"psr-4": {
3441
"Cake\\Queue\\": "src/"
3542
}
3643
},
3744
"autoload-dev": {
3845
"psr-4": {
39-
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
4046
"Cake\\Queue\\Test\\": "tests/",
47+
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
4148
"TestApp\\": "tests/test_app/src/"
4249
}
4350
},
44-
"suggest": {
45-
"cakephp/bake": "Required if you want to generate jobs.",
46-
"cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs."
51+
"config": {
52+
"allow-plugins": {
53+
"dealerdirect/phpcodesniffer-composer-installer": true
54+
},
55+
"sort-packages": true
4756
},
4857
"scripts": {
4958
"check": [
@@ -56,11 +65,5 @@
5665
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.5 psalm/phar:~4.22 && mv composer.backup composer.json",
5766
"test": "phpunit",
5867
"test-coverage": "phpunit --coverage-clover=clover.xml"
59-
},
60-
"config": {
61-
"sort-packages": true,
62-
"allow-plugins": {
63-
"dealerdirect/phpcodesniffer-composer-installer": true
64-
}
6568
}
6669
}

0 commit comments

Comments
 (0)