-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.46 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"name": "lemonade/workflow",
"description": "Workflow implementation for PHP",
"keywords": ["workflow", "dag", "php"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Christian Blank",
"email": "christian.blank@lemonade-research.de"
}
],
"require": {
"php": ">=8.4",
"ramsey/uuid": "^4.7.6",
"react/promise": "^3.2",
"react/event-loop": "^1.5",
"react/promise-timer": "^v1.11.0",
"react/async": "^v4.3.0",
"symfony/messenger": "^7.2",
"symfony/console": "^v7.2.1",
"nesbot/carbon": "^2.72 || ^3.0",
"symfony/framework-bundle": "^v7.2.1",
"opis/closure": "^4.3.1"
},
"autoload": {
"psr-4": {
"Lemonade\\Workflow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lemonade\\Workflow\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@analyze",
"@tests"
],
"tests": "phpunit tests",
"analyze": "phpstan analyse --level max src --memory-limit=-1",
"cs-check": "phpcs --parallel=50",
"cs-fix": "phpcbf"
},
"require-dev": {
"phpunit/phpunit": "^12.4",
"squizlabs/php_codesniffer": "^4.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpspec/prophecy-phpunit": "^v2.3.0"
}
}