sasaya / helloworld
Hello World
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sasaya/helloworld
This package is auto-updated.
Last update: 2025-09-25 05:42:08 UTC
README
Installation
Run the composer require command:
compsoer require sasaya/helloworld
Append Sasaya Hello World service provider to providers
array in config/app.php
.
'providers' => [ /* * Laravel Framework Service Providers... */ Illuminate\Foundation\Providers\ArtisanServiceProvider::class, ... /* * Application Service Providers... */ App\Providers\AppServiceProvider::class, ... /* * Sasaya Service Providers... */ Sasaya\HelloWorld\Providers\ServiceProvider::class, ],
Getting Started
Run the artisan command:
php artisan serve
Then we can open a browser and type http://localhost:8000
and we would see Hello World
.