-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.21 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" : "fab2s/nodalflow",
"description" : "A PHP Nodal WorkFlow",
"type" : "library",
"authors" : [{
"name" : "Fabrice de Stefanis"
}],
"keywords" : [
"PHP",
"NodalFlow",
"WorkFlow",
"Nodal",
"Node",
"Graph",
"Executable",
"Network",
"Traversable",
"Data-Processing",
"Serializable"
],
"license" : [
"MIT"
],
"require" : {
"php": "^7.2|^8.0",
"fab2s/context-exception": "^2.0|^3.0",
"fab2s/souuid": "^1.0",
"symfony/contracts": "^1.1|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^8.0|^7.0",
"symfony/event-dispatcher": "^6.0|^5.0|^4.0|^3.4|^2.8",
"friendsofphp/php-cs-fixer": "^3.0|^2.0"
},
"suggest": {
"symfony/event-dispatcher": "To use FlowEvents"
},
"autoload": {
"psr-4": {
"fab2s\\NodalFlow\\": "src"
}
},
"scripts": {
"post-update-cmd": [
"rm -f .*.cache"
],
"post-install-cmd": [
"rm -f .*.cache"
],
"fix": "@php php-cs-fixer fix --config=./.php-cs-fixer.dist.php -vvv"
}
}