forked from winzou/state-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.09 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "winzou/state-machine",
"description": "A very lightweight yet powerful PHP state machine",
"keywords": ["statemachine", "state", "event", "callback"],
"homepage": "https://github.com/winzou/StateMachine",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandre Bacco",
"email": "alexandre.bacco@gmail.com",
"homepage": "http://alex.bacco.fr"
}
],
"require": {
"php": ">=5.3.0",
"symfony/event-dispatcher": "~2.1|~3.0|~4.0|~5.0",
"symfony/property-access": "~2.1|~3.0|~4.0|~5.0",
"symfony/expression-language": "~2.4|~3.0|~4.0|~5.0"
},
"suggest": {
"twig/twig": "Access the state machine in your twig templates (~1.0)"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"twig/twig": "~1.0"
},
"autoload": {
"psr-0": { "SM": "src/" }
},
"autoload-dev": {
"psr-4": { "spec\\": "spec/" }
},
"config": {
"bin-dir": "bin"
}
}