k7brasil / mphpigniter
MicroPHP(igniter) é um micro framework criado pela K7.
v1.0.0
2022-07-31 00:59 UTC
Requires
- k7brasil/microphp: ^v1.0.0
- vlucas/phpdotenv: ^5.0
README
Minimalistic custom framework created for educational purposes.
The framework is not well tested on production. If you use it on production you use it on your own risk.
Related core package: https://github.com/thecodeholic/tc-php-mvc-core
Installation
- Download the archive or clone the project using git
- Create database schema
- Create
.env
file from.env.example
file and adjust database parameters (including schema name) - Run
composer install
- Run migrations by executing
php migrations.php
from the project root directory - Go to the
public
folder - Start php server by running command
php -S 127.0.0.1:8080
- Open in browser http://127.0.0.1:8080
Installation using docker
Make sure you have docker installed. To see how you can install docker on Windows click here.
Make sure docker
and docker-compose
commands are available in command line.
- Clone the project using git
- Copy
.env.example
into.env
(Don't need to change anything for local development) - Navigate to the project root directory and run
docker-compose up -d
- Install dependencies -
docker-compose exec app composer install
- Run migrations -
docker-compose exec app php migrations.php
- Open in browser http://127.0.0.1:8080
The project was created along with Youtube Video Series "Build PHP MVC Framework". I appreaciate if you share it.