Skip to content

Commit

Permalink
Run composer normalize over composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark authored and www-data committed Nov 27, 2023
1 parent dec0bb9 commit 9fc1030
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"name": "cakephp/queue",
"description": "Queue plugin for CakePHP",
"keywords": ["cakephp", "queue"],
"homepage": "https://github.com/cakephp/queue",
"type": "cakephp-plugin",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"queue"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/queue/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/queue",
"support": {
"issues": "https://github.com/cakephp/queue/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
Expand All @@ -29,21 +32,27 @@
"enqueue/fs": "^0.10",
"phpunit/phpunit": "^8.5 || ^9.3"
},
"suggest": {
"cakephp/bake": "Required if you want to generate jobs.",
"cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs."
},
"autoload": {
"psr-4": {
"Cake\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Cake\\Queue\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"suggest": {
"cakephp/bake": "Required if you want to generate jobs.",
"cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs."
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
Expand All @@ -56,11 +65,5 @@
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.5 psalm/phar:~4.22 && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

0 comments on commit 9fc1030

Please sign in to comment.