Find the correct php.ini file:
Edit the php.ini in Notepad:
C:\php
folderphp.ini
Enable PDO MySQL:
;extension=pdo_mysql
Congrats! You have now enable PDO_MySql Extension!!
Clone the repository
Install dependencies
composer install
Run migrations
vendor/bin/phinx migrate
Run seeders
vendor/bin/phinx seed:run
Install Docker Desktop
Clone the repository
git clone [your-repository-url]
cd [project-directory]
Copy environment file
cp .env.example .env
Edit .env
file with your database credentials
Start Docker containers
docker-compose up -d
Run migrations and seeders
# Access the container's shell
docker-compose exec app bash
# Run migrations
vendor/bin/phinx migrate
# Run seeders
vendor/bin/phinx seed:run
After running seeders, the following test users will be available:
Username | Password | Role | |
---|---|---|---|
admin | admin@example.com | admin123 | admin |
john_doe | john@example.com | password123 | user |