forked from winzou/StateMachineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 802 Bytes
/
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
{
"name": "winzou/state-machine-bundle",
"type": "symfony-bundle",
"description": "Bundle for the very lightweight yet powerful PHP state machine",
"keywords": ["symfony", "bundle", "statemachine"],
"license": "MIT",
"authors": [
{
"name": "Alexandre Bacco",
"homepage": "http://alex.bacco.fr"
}
],
"require": {
"php": ">5.3.0",
"winzou/state-machine": "~0.3",
"symfony/framework-bundle": "~2.1|~3.0|^4.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"autoload": {
"psr-4": { "winzou\\Bundle\\StateMachineBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "spec\\": "spec/" }
},
"config": {
"bin-dir": "bin"
}
}