-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 4.85 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 4.85 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"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": "^4.9",
"google/protobuf": "^4.33.6 || ^5.34.0",
"grpc/grpc": "^1.57",
"internal/destroy": "^1.0",
"internal/promise": "^3.4",
"nesbot/carbon": "^2.72.6 || ^3.8.4",
"psr/log": "^2.0 || ^3.0.2",
"ramsey/uuid": "^4.7.6",
"roadrunner-php/roadrunner-api-dto": "^1.14.0",
"roadrunner-php/version-checker": "^1.0.2",
"spiral/attributes": "^3.1.8",
"spiral/roadrunner": "^2025.1.5",
"spiral/roadrunner-cli": "^2.6",
"spiral/roadrunner-kv": "^4.3.1",
"spiral/roadrunner-worker": "^3.6.2",
"symfony/filesystem": "^5.4.45 || ^6.4.13 || ^7.0 || ^8.0",
"symfony/http-client": "^5.4.49 || ^6.4.17 || ^7.0 || ^8.0",
"symfony/polyfill-php83": "^1.31.0",
"symfony/process": "^5.4.51 || ^6.4.15 || ^7.0 || ^8.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"
},
"files": [
"src/include.php"
]
},
"require-dev": {
"ext-simplexml": "*",
"buggregator/trap": "^1.13.0",
"composer/composer": "^2.8.4",
"cweagans/composer-patches": "^2.0",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"doctrine/annotations": "^1.14.4 || ^2.0.2",
"internal/dload": "^1.10.0",
"internal/toml": "^1.0.3",
"jetbrains/phpstorm-attributes": "dev-master",
"laminas/laminas-code": "^4.16",
"phpunit/phpunit": "10.5.63",
"spiral/code-style": "~2.3.0",
"spiral/core": "^3.14.9",
"ta-tikoma/phpunit-architecture-test": "^0.8.5",
"vimeo/psalm": "^5.26.1 || ^6.2"
},
"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": {
"ext-grpc": "For Client calls",
"ext-protobuf": "For better performance",
"buggregator/trap": "For better debugging",
"roadrunner/psr-logger": "RoadRunner PSR-3 logger integration",
"internal/toml": "To load TOML config files"
},
"scripts": {
"get:binaries": [
"dload get --no-interaction -vv",
"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": "tests/runner.php vendor/bin/phpunit --testsuite=Unit --color=always --testdox",
"test:func": "tests/runner.php vendor/bin/phpunit --testsuite=Functional --color=always --testdox",
"test:arch": "phpunit --testsuite=Arch --color=always --testdox",
"test:accept": "tests/runner.php vendor/bin/phpunit --testsuite=Acceptance --color=always --testdox",
"test:accept-slow": "tests/runner.php vendor/bin/phpunit --testsuite=\"Acceptance-Slow\" --color=always --testdox",
"test:accept-fast": "tests/runner.php vendor/bin/phpunit --testsuite=\"Acceptance-Fast\" --color=always --testdox"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"phpunit/phpunit": {
"Improve assertInstanceOf error message": "patches/phpunit-instance-of.patch",
"Make runTest protected": "patches/phpunit-run-test-protected.patch"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}