forked from VantaFinance/temporal-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.62 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.62 KB
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
{
"name": "vanta/temporal-bundle",
"type": "symfony-bundle",
"description": "Integration temporal with symfony",
"license": "MIT",
"authors": [
{
"name": "Vlad Shashkov",
"email": "v.shashkov@pos-credit.ru"
},
{
"name": "Vanta Team",
"homepage": "https://vanta.ru"
}
],
"keywords": [
"temporal",
"symfony",
"bundle"
],
"autoload": {
"psr-4": {
"Vanta\\Integration\\Symfony\\Temporal\\": "src/"
},
"files": [
"src/DependencyInjection/function.php"
]
},
"autoload-dev": {
"psr-4": {
"Vanta\\Integration\\Symfony\\Temporal\\Test\\": "tests/"
}
},
"require": {
"php": "^8.2",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"symfony/runtime": "^5.4|^6.0|^7.0",
"temporal/sdk": "^2.9"
},
"require-dev": {
"symfony/serializer": "^5.4|^6.0|^7.0",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.15",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "3.65.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-symfony": "^2.0",
"psr/log": "^2.0|^3.0",
"sentry/sentry-symfony": "^4.10",
"nyholm/symfony-bundle-test": "^3.0",
"phpunit/phpunit": "^10.3",
"symfony/monolog-bundle": "^3.8",
"symfony/web-profiler-bundle": "^5.4|^6.0|^7.0",
"vanta/temporal-sentry": "^0.1.1"
},
"suggest": {
"vanta/temporal-sentry": "Integration for sentry"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"phpstan/extension-installer": true,
"php-http/discovery": false
}
}
}