-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.14 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
{
"name": "vanta/temporal-sentry",
"description": "Integration temporal with sentry",
"license": "MIT",
"type": "library",
"keywords": [
"sentry",
"temporal",
"library",
"error reporting"
],
"authors": [
{
"name": "Vlad Shashkov",
"email": "v.shashkov@pos-credit.ru"
},
{
"name": "Vanta Team",
"homepage": "https://vanta.ru"
}
],
"autoload": {
"psr-4": {
"Vanta\\Integration\\Temporal\\Sentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vanta\\Integration\\Temporal\\Sentry\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"sentry/sentry": "^3|^4",
"temporal/sdk": "^2.7"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.46",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^6.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}