-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "bingo-soft/bpmn",
"license": "MIT",
"authors": [{
"name": "Bingo-Soft",
"email": "[email protected]"
}],
"description": "Bpmn model used in workflow engine",
"keywords": ["php", "xml", "bpmn", "model", "workflow", "process", "automation"],
"homepage": "https://github.com/bingo-soft/xml",
"type": "project",
"config": {
"vendor-dir": "./vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"bingo-soft/xml": "^1.0"
},
"require-dev": {
"doctrine/coding-standard": "*",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Bpmn\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
}
}