-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
82 lines (82 loc) · 2.27 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
{
"name": "spiral/sentry-bridge",
"type": "library",
"description": "Sentry Exception Handler for Spiral",
"license": "MIT",
"support": {
"issues": "https://github.com/spiral/grpc-client/issues",
"source": "https://github.com/spiral/grpc-client",
"docs": "https://spiral.dev/docs",
"chat": "https://discord.gg/V6EK4he"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"require": {
"php": ">=8.1",
"spiral/boot": "^3.13",
"spiral/core": "^3.13",
"spiral/snapshots": "^3.13",
"sentry/sentry": "^4.0",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1 || ^2.0",
"php-http/curl-client": "^2.3.1"
},
"require-dev": {
"vimeo/psalm": "^5.25",
"psr/log": "^3.0",
"spiral/testing": "^2.6",
"buggregator/trap": "^1.10"
},
"autoload": {
"psr-4": {
"Spiral\\Sentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=runtime/phpunit/logs/clover.xml --color=always"
]
}
}