davingm / laravel
Laravel starter project by davingm.
v1.0.1
2026-09-22 05:14 UTC
Requires
- php: ^8.3
- laravel/framework: ^13.17
- laravel/tinker: ^3.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.5
- laravel/pao: ^1.0.6
- laravel/pint: ^1.27
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^12.5.12
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Laravel starter project by davingm, powered by the Laravel framework.
Create a New Project
composer create-project davingm/laravel nama-proyek
cd nama-proyek
After installation, the project is ready to use — including the artisan CLI tool.
Development
Start the development environment (Laravel server + queue worker in one terminal):
artisan dev
The CLI will display the Laravel logo, port info, and color-coded output from both processes.
Artisan Commands
The artisan command is a shortcut for php artisan:
artisan migrate artisan make:model User artisan make:controller UserController artisan route:list artisan tinker artisan <any-artisan-command>
CLI Setup (manual, if needed)
The CLI is set up automatically on composer create-project. If you need to set it up manually:
cd .davingm
npm install
npm link
After linking, artisan will be available globally from the project directory.
Requirements
- PHP >= 8.3
- Composer
- Node.js >= 18
License
MIT