forked from yohang/Finite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.62 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
{
"name": "yohang/finite",
"description": "A simple PHP5.3+ 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": ">=5.5",
"symfony/options-resolver": "^2.6|^3.0|^4.0",
"symfony/event-dispatcher": "^2.6|^3.0|^4.0",
"symfony/property-access": "^2.6|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0",
"pimple/pimple": "^1.0",
"symfony/dependency-injection": "^2.6|^3.0|^4.0",
"symfony/framework-bundle": "^2.6|^3.0|^4.0",
"symfony/security": "^2.6|^3.0|^4.0",
"twig/twig": "^1.13"
},
"suggest": {
"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.1.x-dev"
}
}
}