This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.61 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
50
{
"name": "teknoo/states-life-cycle",
"type": "library",
"description": "Component to extend the behavior of teknoo/states and provide a service to manage life cycles of stated class instances and automated their behavior",
"keywords": ["states","class","state pattern","pattern","behavioral software design pattern", "life cycle"],
"homepage": "http://teknoo.software/states",
"license": ["MIT"],
"authors": [
{
"name": "Richard Déloge",
"email": "[email protected]",
"role":"Software architect, Lead developer"
}
],
"support": {
"issues": "https://github.com/TeknooSoftware/states-life-cycle/issues",
"source": "https://github.com/TeknooSoftware/states-life-cycle"
},
"require":{
"php": "~7.0",
"teknoo/states": "~3.1.0-beta3",
"psr/container-implementation": "^1.0.0",
"php-di/php-di": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "~6.2",
"squizlabs/php_codesniffer": "~3.1",
"pdepend/pdepend": "~2.5",
"phpmd/phpmd": "~2.6",
"sebastian/phpcpd": "~3.0",
"phploc/phploc": "~4.0",
"symfony/yaml": "~2.7||~3.0",
"symfony/event-dispatcher":"~2.7||~3.0"
},
"autoload": {
"psr-4": {
"Teknoo\\States\\LifeCycle\\": ["src/"],
"Teknoo\\Tests\\States\\LifeCycle\\": ["tests/"]
}
},
"autoload-dev": {
"psr-4": {
"demo\\": ["demo/"]
}
},
"minimum-stability": "stable",
"archive": {
"exclude": ["demo", "vendor", ".idea"]
}
}