-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.48 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
{
"name": "temporal-php/support",
"type": "library",
"license": "MIT",
"description": "Helpers that simplify working with the Temporal PHP SDK",
"keywords": ["temporal", "helper"],
"authors": [
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Pavel Buchnev (butschster)",
"homepage": "https://github.com/butschster"
}
],
"autoload": {
"psr-4": {
"Temporal\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Temporal\\Support\\Tests\\": "tests/"
}
},
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/roxblnfk"
},
{
"type": "patreon",
"url": "https://patreon.com/butschster"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"temporal/sdk": "^2.8"
},
"suggest": {
"buggregator/trap": "For better debugging and protobuf messages dumping"
},
"require-dev": {
"buggregator/trap": "^1.4",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.23",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-arch": "^2.7"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false
}
}
}