-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
86 lines (86 loc) · 2.77 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dereuromark/cakephp-ide-helper",
"description": "CakePHP IdeHelper Plugin to improve auto-completion",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"IDE",
"autocomplete",
"annotations",
"plugin",
"phpstorm",
"phpdoc",
"dev"
],
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://www.dereuromark.de",
"role": "Maintainer"
},
{
"name": "Other contributors",
"homepage": "https://github.com/dereuromark/cakephp-ide-helper/graphs/contributors",
"role": "Developer"
}
],
"homepage": "https://github.com/dereuromark/cakephp-ide-helper/",
"support": {
"issues": "https://github.com/dereuromark/cakephp-ide-helper/issues",
"source": "https://github.com/dereuromark/cakephp-ide-helper/"
},
"require": {
"php": ">=8.1",
"cakephp/bake": "^3.0.4",
"cakephp/cakephp": "^5.0.7",
"phpstan/phpdoc-parser": "^1.23.1",
"sebastian/diff": "^5.0 || ^6.0",
"squizlabs/php_codesniffer": "^3.8"
},
"require-dev": {
"dereuromark/cakephp-shim": "^3.3.0",
"cakephp/migrations": "^4.0.1",
"cakephp/plugin-installer": "^2.0.1",
"fig-r/psr2r-sniffer": "dev-master",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"IdeHelper\\": "src/",
"IdeHelper\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"Awesome\\": "tests/test_app/plugins/Awesome/src/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Controllers\\": "tests/test_app/plugins/Controllers/src/",
"IdeHelper\\PHPStan\\": "tests/PHPStan/",
"IdeHelper\\Test\\": "tests/",
"MyNamespace\\MyPlugin\\": "tests/test_app/plugins/MyNamespace/MyPlugin/src/",
"MyNamespace\\MyPlugin\\Test\\Fixture\\": "tests/test_app/plugins/MyNamespace/MyPlugin/tests/Fixture/",
"Relations\\": "tests/test_app/plugins/Relations/src/",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --extensions=php",
"cs-fix": "phpcbf --extensions=php",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.0.0 && mv composer.backup composer.json",
"stan-tests": "phpstan analyse -c tests/phpstan.neon",
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml"
}
}