forked from temporalio/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.6 KB
/
Copy pathcomposer.json
File metadata and controls
90 lines (90 loc) · 2.6 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
{
"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": ">=7.4",
"ext-json": "*",
"google/common-protos": "^1.3",
"google/protobuf": "^3.14",
"grpc/grpc": "^1.34",
"nesbot/carbon": "^2.41",
"psr/log": "^1.1",
"react/promise": "^2.8",
"spiral/attributes": "^2.7",
"spiral/roadrunner-worker": "^2.0.2",
"spiral/roadrunner-cli": "^2.0",
"symfony/polyfill-php80": "^1.18"
},
"autoload": {
"psr-4": {
"GPBMetadata\\": "api/GPBMetadata",
"Temporal\\": "src",
"Temporal\\Api\\": "api/Temporal/Api",
"Temporal\\Roadrunner\\": "api/Temporal/Roadrunner"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"composer/composer": "^2.0",
"laminas/laminas-code": "^4.0",
"doctrine/annotations": "^1.11",
"illuminate/support": "^7.0",
"jetbrains/phpstorm-attributes": "dev-master@dev",
"monolog/monolog": "^2.1",
"phpunit/phpunit": "^9.3",
"symfony/var-dumper": "^5.1",
"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
}