Initial commit
parents
Showing
.env.dist
0 → 100644
.env.test
0 → 100644
.gitignore
0 → 100644
Dockerfile
0 → 100644
bin/console
0 → 100644
bin/phpunit
0 → 100644
composer.json
0 → 100644
| { | ||
| "type": "project", | ||
| "license": "proprietary", | ||
| "require": { | ||
| "php": ">=7.1.3", | ||
| "ext-ctype": "*", | ||
| "ext-iconv": "*", | ||
| "composer/package-versions-deprecated": "1.11.99.4", | ||
| "doctrine/annotations": "^1.0", | ||
| "doctrine/doctrine-bundle": "^2.4", | ||
| "doctrine/doctrine-migrations-bundle": "^3.2", | ||
| "doctrine/orm": "^2.10", | ||
| "phpdocumentor/reflection-docblock": "^5.3", | ||
| "sensio/framework-extra-bundle": "^5.1", | ||
| "symfony/asset": "4.4.*", | ||
| "symfony/console": "4.4.*", | ||
| "symfony/dotenv": "4.4.*", | ||
| "symfony/expression-language": "4.4.*", | ||
| "symfony/flex": "^1.3.1", | ||
| "symfony/form": "4.4.*", | ||
| "symfony/framework-bundle": "4.4.*", | ||
| "symfony/http-client": "4.4.*", | ||
| "symfony/intl": "4.4.*", | ||
| "symfony/mailer": "4.4.*", | ||
| "symfony/monolog-bundle": "^3.1", | ||
| "symfony/process": "4.4.*", | ||
| "symfony/property-access": "4.4.*", | ||
| "symfony/property-info": "4.4.*", | ||
| "symfony/proxy-manager-bridge": "4.4.*", | ||
| "symfony/security-bundle": "4.4.*", | ||
| "symfony/serializer": "4.4.*", | ||
| "symfony/translation": "4.4.*", | ||
| "symfony/twig-bundle": "4.4.*", | ||
| "symfony/validator": "4.4.*", | ||
| "symfony/web-link": "4.4.*", | ||
| "symfony/yaml": "4.4.*", | ||
| "twig/extra-bundle": "^2.12|^3.0", | ||
| "twig/twig": "^2.12|^3.0" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^9.5", | ||
| "symfony/browser-kit": "4.4.*", | ||
| "symfony/css-selector": "4.4.*", | ||
| "symfony/debug-bundle": "4.4.*", | ||
| "symfony/maker-bundle": "^1.0", | ||
| "symfony/phpunit-bridge": "^5.3", | ||
| "symfony/stopwatch": "4.4.*", | ||
| "symfony/web-profiler-bundle": "4.4.*" | ||
| }, | ||
| "config": { | ||
| "preferred-install": { | ||
| "*": "dist" | ||
| }, | ||
| "sort-packages": true | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\": "src/" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "App\\Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "replace": { | ||
| "paragonie/random_compat": "2.*", | ||
| "symfony/polyfill-ctype": "*", | ||
| "symfony/polyfill-iconv": "*", | ||
| "symfony/polyfill-php71": "*", | ||
| "symfony/polyfill-php70": "*", | ||
| "symfony/polyfill-php56": "*" | ||
| }, | ||
| "scripts": { | ||
| "auto-scripts": { | ||
| "cache:clear": "symfony-cmd", | ||
| "assets:install %PUBLIC_DIR%": "symfony-cmd" | ||
| }, | ||
| "post-install-cmd": [ | ||
| "@auto-scripts" | ||
| ], | ||
| "post-update-cmd": [ | ||
| "@auto-scripts" | ||
| ] | ||
| }, | ||
| "conflict": { | ||
| "symfony/symfony": "*" | ||
| }, | ||
| "extra": { | ||
| "symfony": { | ||
| "allow-contrib": false, | ||
| "require": "4.4.*" | ||
| } | ||
| } | ||
| } |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/bootstrap.php
0 → 100644
config/bundles.php
0 → 100644
config/packages/cache.yaml
0 → 100644
config/packages/dev/debug.yaml
0 → 100644
config/packages/dev/monolog.yaml
0 → 100644
config/packages/dev/web_profiler.yaml
0 → 100644
config/packages/doctrine.yaml
0 → 100644
config/packages/doctrine_migrations.yaml
0 → 100644
config/packages/framework.yaml
0 → 100644
config/packages/mailer.yaml
0 → 100644
config/packages/prod/deprecations.yaml
0 → 100644
config/packages/prod/doctrine.yaml
0 → 100644
config/packages/prod/monolog.yaml
0 → 100644
config/packages/prod/routing.yaml
0 → 100644
config/packages/routing.yaml
0 → 100644
config/packages/security.yaml
0 → 100644
config/packages/sensio_framework_extra.yaml
0 → 100644
config/packages/test/doctrine.yaml
0 → 100644
config/packages/test/framework.yaml
0 → 100644
config/packages/test/monolog.yaml
0 → 100644
config/packages/test/twig.yaml
0 → 100644
config/packages/test/validator.yaml
0 → 100644
config/packages/test/web_profiler.yaml
0 → 100644
config/packages/translation.yaml
0 → 100644
config/packages/twig.yaml
0 → 100644
config/packages/validator.yaml
0 → 100644
config/preload.php
0 → 100644
config/routes.yaml
0 → 100644
config/routes/annotations.yaml
0 → 100644
config/routes/dev/framework.yaml
0 → 100644
config/routes/dev/web_profiler.yaml
0 → 100644
config/services.yaml
0 → 100644
docker-compose.yml
0 → 100644
make_entity_error_json_array.png
0 → 100644
112 KB
make_entity_error_json_array_solution.png
0 → 100644
476 KB
migrations/.gitignore
0 → 100644
migrations/Version20211025105819.php
0 → 100644
migrations/Version20211025125303.php
0 → 100644
public/index.php
0 → 100644
src/Controller/.gitignore
0 → 100644
src/Controller/LuckyController.php
0 → 100644
src/Controller/ReservationController.php
0 → 100644
src/Controller/RoomController.php
0 → 100644
src/Controller/TEst.php
0 → 100644
src/Entity/.gitignore
0 → 100644
src/Entity/Reservation.php
0 → 100644
src/Entity/Room.php
0 → 100644
src/Form/ReservationType.php
0 → 100644
src/Form/RoomType.php
0 → 100644
src/Kernel.php
0 → 100644
src/Repository/.gitignore
0 → 100644
src/Repository/ReservationRepository.php
0 → 100644
src/Repository/RoomRepository.php
0 → 100644
templates/base.html.twig
0 → 100644
templates/reservation/_delete_form.html.twig
0 → 100644
templates/reservation/_form.html.twig
0 → 100644
templates/reservation/edit.html.twig
0 → 100644
templates/reservation/index.html.twig
0 → 100644
templates/reservation/new.html.twig
0 → 100644
templates/reservation/show.html.twig
0 → 100644
templates/room/_delete_form.html.twig
0 → 100644
templates/room/_form.html.twig
0 → 100644
templates/room/edit.html.twig
0 → 100644
templates/room/index.html.twig
0 → 100644
templates/room/new.html.twig
0 → 100644
templates/room/show.html.twig
0 → 100644
tests/bootstrap.php
0 → 100644
translations/.gitignore
0 → 100644