forked from smolowik/StateMachineBehavior
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 977 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "spyrit/state-machine-behavior",
"description": "Adds a finite state machine to your model.",
"keywords": [
"propel",
"behavior",
"state machine"
],
"license": "MIT",
"authors": [
{
"name": "William DURAND",
"email": "william.durand1@gmail.com"
},
{
"name": "Aleksander Smołowik",
"email": "smolowik@gmail.com"
}
],
"require": {
"php": ">=5.2.4",
"propel/propel": "^2.0.0-beta2"
},
"require-dev": {
"behat/behat": "~2.2",
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-4": {
"smolowik\\Propel\\Behavior\\StateMachine\\": "src"
}
},
"config": {
"bin-dir": "bin/"
},
"type": "propel-behavior",
"extra": {
"name": "state_machine",
"class": "smolowik\\Propel\\Behavior\\StateMachine\\StateMachineBehavior"
}
}