gem-partij/laravel-boilerplate

The Laravel Framework.

10.0.0 2023-06-19 04:17 UTC

This package is auto-updated.

Last update: 2024-05-19 06:35:29 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads composer.lock

Laravel standard boilerplate + gemboot installation + jwt auth

Installation via Composer

If your computer already has PHP and Composer installed, you may create a new project by using Composer directly. After the application has been created, you may start Laravel's local development server using the Artisan CLI's serve command:

composer create-project gem-partij/laravel-boilerplate example-app
cd example-app
php artisan serve

Installation via Docker

If your computer already has Docker installed, you may create a new project by using Docker directly:

docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp \
  composer create-project gem-partij/laravel-boilerplate example-app --ignore-platform-reqs
cd example-app
docker-compose up

Documentations

Laravel

See the LARAVEL DOCUMENTATION for detailed installation and usage instructions.

Gemboot

See the GEMBOOT DOCUMENTATION for detailed installation and usage instructions.