/php-test

A simple CRUD app built with PHP for a job test.

Primary LanguagePHPMIT LicenseMIT

php-test

A simple CRUD app built with PHP for a job test.

⚙️ Installation

git clone https://github.com/Wendryl/php-test.git
cd php-test
composer install

💽 Database Setup

mysql -u root -p
{your_password}

Inside mysql shell create a database called car_store

create database car_store
exit

Import car_store.sql file to mysql

mysql -u root -p car_store < car_store.sql
{your_password}