Skip to content

Commit

Permalink
Merge pull request #975 from cakephp/composer-normalize
Browse files Browse the repository at this point in the history
Run composer normalize over composer.json
  • Loading branch information
othercorey authored Nov 27, 2023
2 parents 178822a + 7edeeb7 commit 5eda5a6
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"name": "cakephp/debug_kit",
"description": "CakePHP Debug Kit",
"type": "cakephp-plugin",
"keywords": ["cakephp", "debug", "kit", "dev"],
"homepage": "https://github.com/cakephp/debug_kit",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"debug",
"kit",
"dev"
],
"authors": [
{
"name": "Mark Story",
Expand All @@ -16,6 +20,7 @@
"homepage": "https://github.com/cakephp/debug_kit/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/debug_kit",
"support": {
"issues": "https://github.com/cakephp/debug_kit/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
Expand All @@ -32,6 +37,9 @@
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0"
},
"suggest": {
"ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
},
"autoload": {
"psr-4": {
"DebugKit\\": "src/"
Expand All @@ -40,31 +48,28 @@
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"DebugKit\\Test\\": "tests/",
"DebugKit\\TestApp\\": "tests/test_app/",
"DebugKit\\Test\\": "tests/",
"DebugkitTestPlugin\\": "tests/test_app/Plugin/DebugkitTestPlugin/src/"
}
},
"suggest": {
"ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"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"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

0 comments on commit 5eda5a6

Please sign in to comment.