├── .gitignore ├── pub ├── index.php ├── index.html ├── invoices.html └── settings.html ├── templates ├── page │ ├── not-found.php │ ├── dashboard.php │ ├── settings.php │ └── invoices.php └── base │ ├── footer.php │ ├── header.php │ └── navigation.php ├── config.php ├── src ├── ResponseInterface.php ├── Controller │ ├── ActionInterface.php │ ├── SettingsController.php │ ├── DashboardController.php │ ├── PageNotFoundController.php │ └── InvoicesController.php ├── RouterInterface.php ├── Config.php ├── RequestInterface.php ├── Entity │ └── InvoiceRepository.php ├── App.php ├── RoutesList.php ├── Database │ └── MySql.php ├── Response.php ├── Router.php └── Request.php ├── composer.json ├── composer.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /pub/index.php: -------------------------------------------------------------------------------- 1 | run(); 10 | -------------------------------------------------------------------------------- /templates/page/not-found.php: -------------------------------------------------------------------------------- 1 | 2 |