-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
99 lines (99 loc) · 3.23 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
{
"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.0",
"ext-curl": "*",
"ext-json": "*",
"google/common-protos": "^1.3 || ^2.0 || ^3.0",
"google/protobuf": "^3.22",
"grpc/grpc": "^1.42",
"nesbot/carbon": "^2.66",
"psr/log": "^1.0.1 || ^2.0 || ^3.0",
"react/promise": "^2.9",
"spiral/attributes": "^2.8 || ^3.0",
"spiral/roadrunner-cli": "^2.2 || ^3.0",
"spiral/roadrunner-kv": "^2.1 || ^3.0 || ^4.0",
"spiral/roadrunner-worker": "^2.1.3 || ^3.0",
"symfony/filesystem": "^4.4.20 || ^5.0 || ^6.0",
"symfony/http-client": "^4.4.20 || ^5.0 || ^6.0",
"symfony/process": "^4.4.20 || ^5.0 || ^6.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",
"GPBMetadata\\": "api/v1/GPBMetadata",
"Temporal\\": "src",
"Temporal\\Api\\": "api/v1/Temporal/Api",
"Temporal\\Roadrunner\\": "api/v1/Temporal/Roadrunner"
}
},
"require-dev": {
"composer/composer": "^2.0",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"doctrine/annotations": "^1.11",
"friendsofphp/php-cs-fixer": "^3.0",
"illuminate/support": "^9.0",
"jetbrains/phpstorm-attributes": "dev-master@dev",
"laminas/laminas-code": "^4.0",
"monolog/monolog": "^2.1 || ^3.0",
"phpunit/phpunit": "^9.5.21",
"symfony/translation": "^6.0",
"symfony/var-dumper": "^6.0",
"vimeo/psalm": "^4.1"
},
"autoload-dev": {
"psr-4": {
"Temporal\\Tests\\": "tests",
"Temporal\\Tests\\Workflow\\": "tests/Fixtures/src/Workflow",
"Temporal\\Tests\\Activity\\": "tests/Fixtures/src/Activity",
"Temporal\\Tests\\DTO\\": "tests/Fixtures/src/DTO"
}
},
"suggest": {
"doctrine/annotations": "^1.11 for Doctrine metadata driver support"
},
"scripts": {
"tests": [
"phpunit --testsuite=Unit --testdox",
"phpunit --testsuite=Feature --testdox",
"phpunit --testsuite=Functional --testdox"
],
"phpcs": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix src"
],
"check": "psalm"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}