The SimpleDashboard project allow users to be created and listed on the home page. The user password can be updated after viewing the specific user.
The user will have the following details:
- Firstname
- Lastname
- Age
- Password
- Avatar / Image
- City
- Region
- Country
- HTML
- CSS
- PHP
- MySQL
The process of creating, listing and updating the user details is done in OOP - Object Oriented Programming approach.
- Clone the project repository.
- Copy the cloned project folder into your web server folder.
- Rename the file
environement-sample.phptoenvironment.phpand change database connection settings. - Open the project in your browser.
- Run the migration to create the
userstable by running the filemigration/create_users_table.phpon terminal or browser.
You can use the sample data which have few users to experience the flow of the application.
- Import the file
migration/data/simpledashboard.sqlin your database server to create a users table with sample data.
You can use PHPUnit to run the tests which are found in tests directory.
For example: phpunit tests/SimpleDashboardTest.php