forked from camunda-community-hub/phpZeebe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 707 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 707 Bytes
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
{
"name": "camundity/phpzeebe",
"type": "library",
"description": "PHP Client for zeebe workflow engine (https://zeebe.io)",
"keywords": ["zeebe", "microservice", "orchestration", "workflow", "bpmn"],
"homepage": "https://github.com/camunda-community-hub/phpZeebe",
"license": "MIT",
"support": {
"issues": "https://github.com/camunda-community-hub/phpZeebe/issues"
},
"authors": [
{
"name": "Christophe Dame"
}
],
"require": {
"php": ">=7.1",
"grpc/grpc": "^1.22",
"ext-grpc": "*",
"google/protobuf": "^3.9.1"
},
"autoload": {
"psr-4": {"Camundity\\PhpZeebe\\": "src/"}
}
}