gitextract_9k9ewx4g/ ├── .docker/ │ ├── bash/ │ │ └── uvdesk-entrypoint.sh │ └── config/ │ ├── apache2/ │ │ ├── env │ │ ├── httpd.conf │ │ └── vhost.conf │ └── php/ │ └── php.ini ├── .dockerignore ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── Support_question.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── SECURITY.md ├── .gitignore ├── CHANGELOG-1.0.md ├── CHANGELOG-1.1.md ├── CHANGELOG-1.2.md ├── Dockerfile ├── INSTALLATION GUIDE.md ├── LICENSE.txt ├── README.md ├── apps/ │ └── .gitignore ├── composer.json ├── config/ │ ├── bundles.php │ ├── packages/ │ │ ├── doctrine.yaml │ │ ├── framework.yaml │ │ ├── mailer.yaml │ │ ├── security.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── uvdesk.yaml │ │ ├── uvdesk_extensions.yaml │ │ └── uvdesk_mailbox.yaml │ ├── routes.yaml │ └── services.yaml ├── public/ │ ├── .htaccess │ ├── assets/ │ │ └── .gitignore │ ├── attachments/ │ │ └── .gitignore │ ├── css/ │ │ ├── main.css │ │ ├── reset.css │ │ └── wizard.css │ ├── index.php │ └── scripts/ │ └── wizard.js ├── src/ │ ├── Console/ │ │ ├── EnvironmentVariables.php │ │ └── Wizard/ │ │ ├── ConfigureHelpdesk.php │ │ ├── DefaultUser.php │ │ └── MigrateDatabase.php │ ├── Controller/ │ │ ├── BaseController.php │ │ ├── ConfigureHelpdesk.php │ │ └── ImageCache/ │ │ ├── ImageCacheController.php │ │ └── ImageManager.php │ ├── Entity/ │ │ └── .gitignore │ ├── EventListener/ │ │ └── ExceptionSubscriber.php │ ├── Migrations/ │ │ └── .gitignore │ ├── Repository/ │ │ └── .gitignore │ ├── Resources/ │ │ └── config/ │ │ └── routes.yaml │ ├── Routing/ │ │ └── RoutingResource.php │ └── Service/ │ └── UrlImageCacheService.php ├── templates/ │ ├── errors/ │ │ └── error.html.twig │ ├── installation-wizard/ │ │ └── index.html.twig │ └── mail.html.twig └── translations/ ├── .gitignore ├── messages.ar.yml ├── messages.da.yml ├── messages.de.yml ├── messages.en.yml ├── messages.es.yml ├── messages.fr.yml ├── messages.he.yml ├── messages.it.yml ├── messages.pl.yml ├── messages.pt_BR.yml ├── messages.tr.yml └── messages.zh.yml