-
Notifications
You must be signed in to change notification settings - Fork 188
/
composer.json
51 lines (51 loc) · 1.75 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
{
"name": "yohang/finite",
"description": "A simple PHP Finite State Machine",
"keywords": ["statemachine", "workflow", "state", "transition", "symfony", "bundle"],
"homepage": "https://github.com/yohang/Finite",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yohan Giarelli",
"email": "[email protected]",
"homepage": "http://yohan.giarel.li"
},
{
"name": "Finite contributors",
"homepage": "https://github.com/yohang/Finite/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"symfony/options-resolver": "^4.0|^5.0|^6.0",
"symfony/event-dispatcher": "^4.0|^5.0|^6.0",
"symfony/property-access": "^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.25",
"pimple/pimple": "^1.1.1",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"symfony/framework-bundle": "^4.0|^5.0|^6.0",
"symfony/security-bundle": "^4.0|^5.0|^6.0",
"symfony/serializer": "^4.0|^5.0|^6.0",
"twig/twig": "^2.0|^3.0"
},
"suggest": {
"symfony/serializer": "Needed for the use of the normalizer",
"pimple/pimple": "Needed for use with PimpleFactory",
"symfony/security": "Needed for using SecurityAwareStateMachine",
"symfony/yaml": "Yaml allows you to define your State graph in YAML"
},
"autoload": {
"psr-0": { "Finite": "src/" }
},
"config": {
"bin-dir":"bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}