-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
102 lines (102 loc) · 3.67 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "temporal/sdk",
"license": "MIT",
"type": "library",
"description": "Temporal SDK",
"homepage": "https://temporal.io",
"keywords": [
"sdk",
"api",
"library",
"temporal",
"event-sourcing",
"workflow",
"activity",
"service-bus"
],
"support": {
"forum": "https://community.temporal.io",
"docs": "https://docs.temporal.io",
"issues": "https://github.com/temporalio/sdk-php/issues",
"source": "https://github.com/temporalio/sdk-php"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"google/common-protos": "^1.3 || ^2.0 || ^3.0 || ^4.0",
"google/protobuf": "^3.22 || ^4.0",
"grpc/grpc": "^1.42",
"nesbot/carbon": "^2.72 || ^3.0.2",
"psr/log": "^2.0 || ^3.0",
"ramsey/uuid": "^4.7",
"react/promise": "^2.9",
"roadrunner-php/roadrunner-api-dto": "^1.9.0",
"roadrunner-php/version-checker": "^1.0",
"spiral/attributes": "^3.1.6",
"spiral/roadrunner": "^2024.1",
"spiral/roadrunner-cli": "^2.5",
"spiral/roadrunner-kv": "^4.2",
"spiral/roadrunner-worker": "^3.5",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"symfony/process": "^5.4 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Temporal\\Api\\Testservice\\": "testing/api/testservice/Temporal/Api/Testservice",
"GPBMetadata\\Temporal\\Api\\Testservice\\": "testing/api/testservice/GPBMetadata/Temporal/Api/Testservice",
"Temporal\\Testing\\": "testing/src",
"Temporal\\": "src"
}
},
"require-dev": {
"buggregator/trap": "^1.10.1",
"composer/composer": "^2.0",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"doctrine/annotations": "^1.14|^2.0.0",
"internal/dload": "^1.0",
"jetbrains/phpstorm-attributes": "dev-master@dev",
"laminas/laminas-code": "^4.0",
"phpunit/phpunit": "^10.5",
"spiral/code-style": "~2.1.2",
"spiral/core": "^3.13",
"symfony/var-dumper": "^6.0 || ^7.0",
"vimeo/psalm": "^4.30 || ^5.4"
},
"autoload-dev": {
"psr-4": {
"Temporal\\Tests\\Acceptance\\App\\": "tests/Acceptance/App",
"Temporal\\Tests\\Interceptor\\": "tests/Fixtures/src/Interceptor",
"Temporal\\Tests\\Workflow\\": "tests/Fixtures/src/Workflow",
"Temporal\\Tests\\Activity\\": "tests/Fixtures/src/Activity",
"Temporal\\Tests\\DTO\\": "tests/Fixtures/src/DTO",
"Temporal\\Tests\\Proto\\": "tests/Fixtures/src/Proto",
"Temporal\\Tests\\": "tests"
}
},
"suggest": {
"doctrine/annotations": "For Doctrine metadata driver support",
"ext-grpc": "For Client calls"
},
"scripts": {
"post-update-cmd": "Temporal\\Worker\\Transport\\RoadRunnerVersionChecker::postUpdate",
"cs:diff": "php-cs-fixer fix --dry-run -v --diff --show-progress dots",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test:unit": "phpunit --testsuite=Unit --color=always --testdox",
"test:func": "phpunit --testsuite=Functional --color=always --testdox",
"test:accept": "phpunit --testsuite=Acceptance --color=always --testdox"
},
"extra": {
"branch-alias": {
"dev-master": "2.11.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}