-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.2 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 2.2 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
68
69
{
"name": "durable-workflow/sdk",
"description": "Framework-neutral PHP client and worker SDK for the Durable Workflow server",
"type": "library",
"license": "MIT",
"keywords": ["durable", "workflow", "orchestration", "worker", "sdk"],
"homepage": "https://durable-workflow.com",
"support": {
"docs": "https://php.durable-workflow.com/",
"issues": "https://github.com/durable-workflow/sdk-php/issues",
"source": "https://github.com/durable-workflow/sdk-php"
},
"authors": [
{
"name": "Durable Workflow Contributors"
}
],
"require": {
"php": "^8.1",
"apache/avro": "^1.12",
"composer-runtime-api": "^2.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "^3.7",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"suggest": {
"ext-pcntl": "Enables managed workers to handle SIGINT and SIGTERM gracefully."
},
"autoload": {
"psr-4": {
"DurableWorkflow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DurableWorkflow\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"benchmark-avro-value": "php benchmarks/avro-value.php --enforce",
"docs": "phpdoc -d \"$PWD/src\" -t \"$PWD/build/api\" --cache-folder \"$PWD/build/phpdoc-cache\" --title=\"Durable Workflow PHP SDK\"",
"check-boundary": "bash scripts/check-dependency-boundary.sh",
"check-release-identity": "scripts/check-release-identity.sh"
},
"config": {
"allow-plugins": {},
"sort-packages": true
},
"extra": {
"durable-workflow": {
"product-train": "2.0.0-rc.5",
"supported-server-versions": "2.0.0-rc.5",
"worker-protocol-version": "1.13",
"control-plane-version": "2",
"payload-codecs": ["avro"]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}