-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
141 lines (141 loc) · 4.46 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "buggregator/trap",
"description": "A simple and powerful tool for debugging PHP applications.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"debug",
"cli",
"console",
"sentry",
"smtp",
"dump",
"binary dump",
"websockets",
"server",
"helper",
"dev"
],
"authors": [
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Pavel Buchnev (butschster)",
"homepage": "https://github.com/butschster"
}
],
"homepage": "https://buggregator.dev/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/buggregator"
},
{
"type": "patreon",
"url": "https://patreon.com/roxblnfk"
},
{
"type": "patreon",
"url": "https://patreon.com/butschster"
}
],
"require": {
"php": ">=8.1",
"ext-filter": "*",
"ext-sockets": "*",
"clue/stream-filter": "^1.6",
"nunomaduro/termwind": "^1.15 || ^2",
"nyholm/psr7": "^1.8",
"php-http/message": "^1.15",
"psr/container": "^1.1 || ^2.0",
"psr/http-message": "^1.1 || ^2",
"symfony/console": "^6.4 || ^7",
"symfony/var-dumper": "^6.3 || ^7",
"yiisoft/injector": "^1.2"
},
"require-dev": {
"dereuromark/composer-prefer-lowest": "^0.1.10",
"ergebnis/phpunit-slow-test-detector": "^2.14",
"friendsofphp/php-cs-fixer": "^3.54",
"google/protobuf": "^3.23",
"pestphp/pest": "^2.34",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.1",
"roxblnfk/unpoly": "^1.8.1",
"vimeo/psalm": "^5.11",
"wayofdev/cs-fixer-config": "^1.4"
},
"suggest": {
"ext-simplexml": "To load trap.xml",
"roxblnfk/unpoly": "If you want to remove unnecessary PHP polyfills depend on PHP version."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Buggregator\\Trap\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Buggregator\\Trap\\Tests\\": "tests/"
}
},
"bin": [
"bin/trap"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1.27"
},
"sort-packages": true
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --configuration=infection.json.dist"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --configuration=infection.json.dist --logger-github --ignore-msi-with-no-mutations --only-covered"
],
"psalm": "psalm --show-info=true",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"stan": "phpstan analyse --memory-limit=2G",
"stan:baseline": "phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
"stan:ci": "phpstan analyse --memory-limit=2G --error-format=github",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:arch": "pest --color=always --configuration pest.xml.dist",
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=.build/phpunit/logs/clover.xml --color=always"
]
}
}