|
1 | 1 | { |
2 | 2 | "name": "cakephp/debug_kit", |
3 | 3 | "description": "CakePHP Debug Kit", |
4 | | - "type": "cakephp-plugin", |
5 | | - "keywords": ["cakephp", "debug", "kit", "dev"], |
6 | | - "homepage": "https://github.com/cakephp/debug_kit", |
7 | 4 | "license": "MIT", |
| 5 | + "type": "cakephp-plugin", |
| 6 | + "keywords": [ |
| 7 | + "cakephp", |
| 8 | + "debug", |
| 9 | + "kit", |
| 10 | + "dev" |
| 11 | + ], |
8 | 12 | "authors": [ |
9 | 13 | { |
10 | 14 | "name": "Mark Story", |
|
16 | 20 | "homepage": "https://github.com/cakephp/debug_kit/graphs/contributors" |
17 | 21 | } |
18 | 22 | ], |
| 23 | + "homepage": "https://github.com/cakephp/debug_kit", |
19 | 24 | "support": { |
20 | 25 | "issues": "https://github.com/cakephp/debug_kit/issues", |
21 | 26 | "forum": "https://stackoverflow.com/tags/cakephp", |
|
32 | 37 | "cakephp/cakephp-codesniffer": "^5.0", |
33 | 38 | "phpunit/phpunit": "^10.1.0" |
34 | 39 | }, |
| 40 | + "suggest": { |
| 41 | + "ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use." |
| 42 | + }, |
35 | 43 | "autoload": { |
36 | 44 | "psr-4": { |
37 | 45 | "DebugKit\\": "src/" |
|
40 | 48 | "autoload-dev": { |
41 | 49 | "psr-4": { |
42 | 50 | "Cake\\Test\\": "vendor/cakephp/cakephp/tests/", |
43 | | - "DebugKit\\Test\\": "tests/", |
44 | 51 | "DebugKit\\TestApp\\": "tests/test_app/", |
| 52 | + "DebugKit\\Test\\": "tests/", |
45 | 53 | "DebugkitTestPlugin\\": "tests/test_app/Plugin/DebugkitTestPlugin/src/" |
46 | 54 | } |
47 | 55 | }, |
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 | + } |
50 | 60 | }, |
51 | 61 | "scripts": { |
52 | 62 | "cs-check": "phpcs --colors --parallel=16 -p src/ tests/", |
53 | 63 | "cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/", |
54 | 64 | "phpstan": "tools/phpstan analyse", |
55 | 65 | "psalm": "tools/psalm --show-info=false", |
| 66 | + "psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml", |
56 | 67 | "stan": [ |
57 | 68 | "@phpstan", |
58 | 69 | "@psalm" |
59 | 70 | ], |
60 | 71 | "stan-baseline": "tools/phpstan --generate-baseline", |
61 | | - "psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml", |
62 | 72 | "stan-setup": "phive install", |
63 | 73 | "test": "phpunit" |
64 | | - }, |
65 | | - "config": { |
66 | | - "allow-plugins": { |
67 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
68 | | - } |
69 | 74 | } |
70 | 75 | } |
0 commit comments