Skip to content

Commit fcdb138

Browse files
Derhanovanyt
authored andcommitted
Render Question Group
closes #3. # Create Entities Models that are not mapped to the database. - Question - Answer - Question Group (or Form) Different types of question could be created (text, checkbox, radio). Multiple questions could be added to the Question Group. Questions must not be reused by different Question Groups. # Render the single Question Group Use __Twig__ library and __Form__ Symfony components. Render the form with predefined questions list.
1 parent 85d0dc1 commit fcdb138

37 files changed

+2382
-58
lines changed

.env

-19
This file was deleted.

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
/var/
77
/vendor/
88
###< symfony/framework-bundle ###
9+
.env
10+
.php_cs.cache

composer.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,23 @@
66
"ext-ctype": "*",
77
"ext-iconv": "*",
88
"easycorp/easyadmin-bundle": "^1.17",
9+
"sensio/framework-extra-bundle": "^5.2",
10+
"symfony/asset": "4.1.*",
911
"symfony/console": "4.1.*",
1012
"symfony/flex": "^1.1",
13+
"symfony/form": "4.1.*",
1114
"symfony/framework-bundle": "4.1.*",
15+
"symfony/orm-pack": "^1.0",
1216
"symfony/twig-bundle": "4.1.*",
1317
"symfony/yaml": "4.1.*"
1418
},
1519
"require-dev": {
16-
"symfony/dotenv": "4.1.*"
20+
"symfony/debug-pack": "^1.0",
21+
"symfony/dotenv": "4.1.*",
22+
"symfony/maker-bundle": "^1.10",
23+
"symfony/profiler-pack": "^1.0",
24+
"symfony/var-dumper": "4.1.*",
25+
"symfony/web-server-bundle": "4.1.*"
1726
},
1827
"config": {
1928
"preferred-install": {

0 commit comments

Comments
 (0)