├── README.md ├── .gitignore ├── logo.png ├── favicon.png ├── public ├── sounds │ ├── no.wav │ └── yes.wav ├── images │ ├── image_0.png │ ├── image_1.png │ ├── image_2.png │ ├── image_3.png │ ├── image_4.png │ ├── image_5.png │ ├── image_6.png │ ├── image_7.png │ ├── image_8.png │ └── image_9.png ├── css │ ├── hangman.css │ └── style.css └── js │ ├── tables.js │ └── hangman.js ├── composer.json ├── app ├── views │ ├── index.view.php │ ├── partials │ │ ├── footer.php │ │ ├── nav.php │ │ └── head.php │ ├── currencies.view.php │ ├── game.view.php │ ├── history.view.php │ └── exchange.view.php ├── routes.php ├── providers │ └── NbpProvider.php ├── controllers │ └── CurrencyController.php └── services │ └── CurrencyService.php ├── core ├── error.php ├── Request.php ├── database │ ├── Connection.php │ └── QueryBuilder.php ├── bootstrap.php ├── App.php └── Router.php ├── functions.php ├── update_currencies.php ├── config.php ├── index.php ├── composer.lock ├── Dockerfile ├── docker-compose.yml ├── .htaccess └── db ├── exchange_history.sql └── exchange_rates.sql /README.md: -------------------------------------------------------------------------------- 1 | # currency_exchange -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /php 3 | /apache -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/logo.png -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/favicon.png -------------------------------------------------------------------------------- /public/sounds/no.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/sounds/no.wav -------------------------------------------------------------------------------- /public/sounds/yes.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/sounds/yes.wav -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "autoload": { 3 | "classmap": [ 4 | "./" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /public/images/image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_0.png -------------------------------------------------------------------------------- /public/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_1.png -------------------------------------------------------------------------------- /public/images/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_2.png -------------------------------------------------------------------------------- /public/images/image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_3.png -------------------------------------------------------------------------------- /public/images/image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_4.png -------------------------------------------------------------------------------- /public/images/image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_5.png -------------------------------------------------------------------------------- /public/images/image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_6.png -------------------------------------------------------------------------------- /public/images/image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_7.png -------------------------------------------------------------------------------- /public/images/image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_8.png -------------------------------------------------------------------------------- /public/images/image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalm57/currency_exchange/HEAD/public/images/image_9.png -------------------------------------------------------------------------------- /app/views/index.view.php: -------------------------------------------------------------------------------- 1 | 2 |
4 |