Skip to content

Commit 5eda5a6

Browse files
authored
Merge pull request #975 from cakephp/composer-normalize
Run composer normalize over composer.json
2 parents 178822a + 7edeeb7 commit 5eda5a6

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

composer.json

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
22
"name": "cakephp/debug_kit",
33
"description": "CakePHP Debug Kit",
4-
"type": "cakephp-plugin",
5-
"keywords": ["cakephp", "debug", "kit", "dev"],
6-
"homepage": "https://github.com/cakephp/debug_kit",
74
"license": "MIT",
5+
"type": "cakephp-plugin",
6+
"keywords": [
7+
"cakephp",
8+
"debug",
9+
"kit",
10+
"dev"
11+
],
812
"authors": [
913
{
1014
"name": "Mark Story",
@@ -16,6 +20,7 @@
1620
"homepage": "https://github.com/cakephp/debug_kit/graphs/contributors"
1721
}
1822
],
23+
"homepage": "https://github.com/cakephp/debug_kit",
1924
"support": {
2025
"issues": "https://github.com/cakephp/debug_kit/issues",
2126
"forum": "https://stackoverflow.com/tags/cakephp",
@@ -32,6 +37,9 @@
3237
"cakephp/cakephp-codesniffer": "^5.0",
3338
"phpunit/phpunit": "^10.1.0"
3439
},
40+
"suggest": {
41+
"ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
42+
},
3543
"autoload": {
3644
"psr-4": {
3745
"DebugKit\\": "src/"
@@ -40,31 +48,28 @@
4048
"autoload-dev": {
4149
"psr-4": {
4250
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
43-
"DebugKit\\Test\\": "tests/",
4451
"DebugKit\\TestApp\\": "tests/test_app/",
52+
"DebugKit\\Test\\": "tests/",
4553
"DebugkitTestPlugin\\": "tests/test_app/Plugin/DebugkitTestPlugin/src/"
4654
}
4755
},
48-
"suggest": {
49-
"ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
56+
"config": {
57+
"allow-plugins": {
58+
"dealerdirect/phpcodesniffer-composer-installer": true
59+
}
5060
},
5161
"scripts": {
5262
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
5363
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
5464
"phpstan": "tools/phpstan analyse",
5565
"psalm": "tools/psalm --show-info=false",
66+
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
5667
"stan": [
5768
"@phpstan",
5869
"@psalm"
5970
],
6071
"stan-baseline": "tools/phpstan --generate-baseline",
61-
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
6272
"stan-setup": "phive install",
6373
"test": "phpunit"
64-
},
65-
"config": {
66-
"allow-plugins": {
67-
"dealerdirect/phpcodesniffer-composer-installer": true
68-
}
6974
}
7075
}

0 commit comments

Comments
 (0)