A banking application that demonstrates the use of both file and database storage systems while following Object-Oriented Programming (OOP) principles. This project features user roles (Admin and Customer), transactions, and session management.
-
Clone the repository:
git clone [email protected]:Fabdoc27/Bangubank.git cd Bangubank
-
Install the dependencies:
composer install
Note: You can change the storage type inside config/database.php
:
- File Storage: Set
"storage" => "file"
. - Database Storage: Set
"storage" => "database"
.
-
Run the project:
Start the PHP development server:
php -S localhost:8080
-
Access the application:
Open your browser and go to http://localhost:8080.