gem-partij / laravel-boilerplate
The Laravel Framework.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.1
- doctrine/dbal: ^3.3
- gem-partij/gemboot-lara: ^4.0
- guzzlehttp/guzzle: ^7.2
- laravel/framework: ^10.10
- laravel/sanctum: ^3.2
- laravel/tinker: ^2.8
- predis/predis: ^2.0
Requires (Dev)
- fakerphp/faker: ^1.9.1
- laravel/pint: ^1.0
- laravel/sail: ^1.18
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^7.0
- phpunit/phpunit: ^10.1
- spatie/laravel-ignition: ^2.0
README
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.