php api
1.0.0
git clone https://github.com/ahmed-osama2022/php-api
cd php-api
composer install# if you're using php-cli
php -S localhost:8000 -t public.env file at the root folder in the project.DB_HOST=
DB_NAME=
DB_PORT=
DB_USER=
DB_PASS=If you start serving the project you should see this welcome page at your serving link.
Welcome Page

Test route

MVC in the structure.psr-4 autoloader for the src and App folder.Put all your credentials for the database in the .env file.
Define all your routes as explained in the src/Router.php file.
You will see an example in the files to tell you How to use it fine.
Start making the logic of your application as contrllers you defined in the App/controllers folder.