forked from dereuromark/cakephp-whoops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.59 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
{
"name": "dereuromark/cakephp-whoops",
"description": "Whoops error handler for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"whoops",
"error handler"
],
"homepage": "https://github.com/dereuromark/cakephp-whoops",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://www.dereuromark.de",
"role": "Maintainer"
},
{
"name": "Jad Bitar",
"homepage": "http://jadb.io",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/dereuromark/cakephp-whoops/issues",
"source": "https://github.com/dereuromark/cakephp-whoops"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"filp/whoops": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"fig-r/psr2r-sniffer": "dev-master"
},
"autoload": {
"psr-4": {
"CakephpWhoops\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakephpWhoops\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage" : "vendor/bin/phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.10 && mv composer.backup composer.json",
"cs-check": "phpcs -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --extensions=php src/ tests/",
"cs-fix": "phpcbf -v --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --extensions=php src/ tests/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}