-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.5 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": "spiral-packages/yii-error-handler-bridge",
"description": "Yii Error Handler integration package for Spiral Framework",
"keywords": [
"spiral",
"spiral-framework",
"error-handling"
],
"homepage": "https://github.com/spiral-packages/yii-error-handler-bridge",
"license": "MIT",
"authors": [
{
"name": "kastahov",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spiral/boot": "^3.0",
"spiral/exceptions": "^3.0",
"yiisoft/error-handler": "~3.3"
},
"require-dev": {
"spiral/http": "^3.0",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5.28",
"spiral/testing": "^2.0",
"vimeo/psalm": "^4.9"
},
"autoload": {
"psr-4": {
"Spiral\\YiiErrorHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\YiiErrorHandler\\Tests\\": "tests/src"
},
"files": [
"tests/polyfill.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\YiiErrorHandler\\Bootloader\\YiiErrorHandlerBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}