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
48 lines (48 loc) · 1.76 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
{
"name": "teknoo/states-bundle",
"type": "symfony-bundle",
"description": "Symfony bunde to create PHP classes following the State pattern in PHP. This can be a cleaner way for an object to change its behavior at runtime without resorting to large monolithic conditional statements and thus improve maintainability. (Build on the Teknoo Software States library)",
"keywords": ["states","class","symfony","bundle","state pattern","pattern","behavioral software design pattern"],
"homepage": "http://teknoo.software/states",
"license": ["MIT"],
"authors": [
{
"name": "Richard Déloge",
"email": "[email protected]",
"role":"Software architect, Lead developer"
}
],
"require": {
"php": "~7.0",
"teknoo/states": "^3.0.0",
"container-interop/service-provider":"^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4",
"squizlabs/php_codesniffer": "~2.8",
"pdepend/pdepend": "~2.5",
"phpmd/phpmd": "~2.6",
"sebastian/phpcpd": "~3.0",
"phploc/phploc": "~3.0",
"doctrine/orm": "~2.2",
"doctrine/mongodb-odm": "^1.0.0",
"symfony/framework-bundle": "~2.8||~3.0,<3.4",
"teknoo/states-life-cycle": "^2.0.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Teknoo\\Bundle\\StatesBundle\\": "src/symfony",
"Teknoo\\UniversalPackage\\States\\": "src/universal"
}
},
"autoload-dev": {
"psr-4": {
"Teknoo\\Tests\\Bundle\\StatesBundle\\": "tests/symfony",
"Teknoo\\Tests\\UniversalPackage\\States\\": "tests/universal"
}
},
"archive": {
"exclude": ["demo", "vendor", ".idea"]
}
}