-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.45 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
{
"name": "bingo-soft/jabe",
"license": "MIT",
"authors": [{
"name": "Bingo-Soft",
"email": "[email protected]"
}],
"description": "Just another BPMN engine for workflow and process automation",
"keywords": ["php", "bpmn", "workflow", "process", "automation"],
"homepage": "https://github.com/bingo-soft/jabe",
"type": "project",
"config": {
"vendor-dir": "./vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0",
"bingo-soft/xml": "^1.0",
"monolog/monolog": "^2.3",
"phpmailer/phpmailer": "^6.5",
"phpixie/image": "^3.3",
"ramsey/uuid": "^4.2",
"dragonmantank/cron-expression": "^3.3",
"symfony/event-dispatcher": "^6.0",
"guzzlehttp/guzzle": "^7.0",
"bingo-soft/bpmn": "*",
"bingo-soft/sax": "*",
"bingo-soft/util": "*",
"bingo-soft/el": "*",
"bingo-soft/script": "*",
"bingo-soft/mybatis": "*",
"bingo-soft/concurrent": "*",
"symfony/process": "^6.2"
},
"require-dev": {
"doctrine/coding-standard": "^9",
"squizlabs/php_codesniffer": "3.6.0",
"phpunit/phpunit": "^9.3.0"
},
"autoload": {
"psr-4": {
"Jabe\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
}
}