Skip to content

Commit

Permalink
Merge pull request #664 from cakephp/composer-normalize
Browse files Browse the repository at this point in the history
Run composer normalize over composer.json
  • Loading branch information
markstory authored Dec 1, 2023
2 parents 294c13f + c5fb289 commit 09d3f9c
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "cakephp/migrations",
"description": "Database Migration plugin for CakePHP based on Phinx",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"migrations"
],
"homepage": "https://github.com/cakephp/migrations",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/migrations/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/migrations",
"support": {
"issues": "https://github.com/cakephp/migrations/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
Expand All @@ -22,16 +22,22 @@
},
"require": {
"php": ">=8.1",
"robmorgan/phinx": "^0.15.3",
"cakephp/cache": "^5.0",
"cakephp/orm": "^5.0",
"cakephp/cache": "^5.0"
"robmorgan/phinx": "^0.15.3"
},
"require-dev": {
"phpunit/phpunit": "^10.1.0",
"cakephp/cakephp": "^5.0",
"cakephp/bake": "^3.0",
"cakephp/cakephp-codesniffer": "^5.0"
"cakephp/cakephp": "^5.0",
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0"
},
"suggest": {
"cakephp/bake": "If you want to generate migrations.",
"dereuromark/cakephp-ide-helper": "If you want to have IDE suggest/autocomplete when creating migrations."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Migrations\\": "src/"
Expand All @@ -41,17 +47,16 @@
"psr-4": {
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests/",
"Migrations\\Test\\": "tests/",
"TestApp\\": "tests/test_app/App/",
"SimpleSnapshot\\": "tests/test_app/Plugin/SimpleSnapshot/src/",
"TestApp\\": "tests/test_app/App/",
"TestBlog\\": "tests/test_app/Plugin/TestBlog/src/"
}
},
"suggest": {
"cakephp/bake": "If you want to generate migrations.",
"dereuromark/cakephp-ide-helper": "If you want to have IDE suggest/autocomplete when creating migrations."
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs-check",
Expand All @@ -62,19 +67,14 @@
"cs-fix": "phpcbf -p",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

0 comments on commit 09d3f9c

Please sign in to comment.