forked from phpmentors-jp/pageflower-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.92 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
51
52
53
54
55
56
57
{
"name": "phpmentors/pageflower-bundle",
"type": "symfony-bundle",
"description": "A pageflow engine for Symfony applications",
"keywords": ["symfony", "flow", "pageflow", "stateful", "conversation"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Atsuhiro Kubo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.9",
"doctrine/annotations": "~1.0",
"phpmentors/domain-kata": "~1.0",
"piece/stagehand-fsm": "~2.6",
"symfony/config": "~2.8|~3.0|~4.0",
"symfony/console": "~2.8|~3.0|~4.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0",
"symfony/form": "~2.8|~3.0|~4.0",
"symfony/framework-bundle": "~2.8|~3.0|~4.0",
"symfony/http-foundation": "~2.8|~3.0|~4.0",
"symfony/http-kernel": "~2.8|~3.0|~4.0",
"symfony/routing": "~2.8|~3.0|~4.0",
"symfony/security": "~2.8|~3.0|~4.0",
"symfony/validator": "~2.8|~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/browser-kit": "~2.8|~3.0|~4.0",
"symfony/css-selector": "~2.8|~3.0|~4.0",
"symfony/filesystem": "~2.8|~3.0|~4.0",
"symfony/templating": "~2.8|~3.0|~4.0",
"symfony/twig-bridge": "~2.8|~3.0|~4.0",
"symfony/twig-bundle": "~2.8|~3.0|~4.0"
},
"suggest": {
"symfony/twig-bridge": ">=2.8.0 provides the `ConversationContext` object as `app.conversation` in Twig templates",
"symfony/twig-bundle": ">=2.8.0 provides the `ConversationContext` object as `app.conversation` in Twig templates"
},
"autoload": {
"psr-4": {
"PHPMentors\\PageflowerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPMentors\\PageflowerBundle\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
}
}