-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (55 loc) · 1.42 KB
/
composer.json
File metadata and controls
57 lines (55 loc) · 1.42 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "elcodi/state-transition-machine",
"description": "Elcodi State Transition Machine Component",
"keywords": [
"elcodi",
"state transition machine",
"ecommerce",
"component"
],
"homepage": "https://github.com/elcodi/StateTransitionMachine",
"type": "library",
"license": "MIT",
"support": {
"email": "devs@elcodi.com",
"forum": "https://gitter.im/elcodi/elcodi",
"source": "https://github.com/elcodi/elcodi",
"issues": "https://github.com/elcodi/elcodi/issues"
},
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
},
{
"name": "Aldo Chiecchia",
"email": "zimage@tiscali.it"
},
{
"name": "The Awesome Elcodi Community",
"homepage": "https://github.com/elcodi/StateTransitionMachine/contributors"
}
],
"require": {
"php": "^5.4|^7.0",
"psr/log": "^1.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"elcodi/core": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.19"
},
"autoload": {
"exclude-from-classmap": [
"/Tests/"
],
"psr-4": {
"Elcodi\\Component\\StateTransitionMachine\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}