generated from spiral-packages/package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
89 lines (89 loc) · 2.08 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
{
"name": "spiral/temporal-bridge",
"description": "Temporal integration package for Spiral Framework",
"keywords": [
"spiral",
"spiral-framework",
"php",
"workflow",
"temporal"
],
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/temporal-bridge/issues",
"source": "https://github.com/spiral/temporal-bridge",
"docs": "https://spiral.dev/docs",
"chat": "https://discord.gg/V6EK4he"
},
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "alexey.gagarin@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"require": {
"php": "^8.1",
"spiral/attributes": "^2.8 || ^3.1.5",
"spiral/boot": "^3.14",
"spiral/core": "^3.14",
"spiral/roadrunner-bridge": "^3.7 || ^4.0",
"spiral/scaffolder": "^3.14",
"spiral/tokenizer": "^3.14",
"temporal/sdk": "^2.10"
},
"require-dev": {
"spiral/framework": "^3.14",
"spiral/dumper": "^3.3",
"spiral/testing": "^2.8",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"Spiral\\TemporalBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\TemporalBridge\\Tests\\App\\": "tests/app/src",
"Spiral\\TemporalBridge\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --no-cache --config=psalm.xml ./src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\TemporalBridge\\Bootloader\\TemporalBridgeBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}