meedeley / hello-world
Just a simple library to generate greetings or messages in Laravel using Artisan command.
1.0.3
2025-07-16 06:02 UTC
Requires
- php: ^8.0
- laravel/framework: ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0
README
A package that does exactly what you think it does — it says Hello World (wow, groundbreaking).
This is a very serious Laravel package designed for extremely critical situations like saying hello to your users. Just run a command, and boom — your CLI feels loved.
What does it do?
- Prints
Hello [name]
- Knows its own version (which is pretty cool for something that can't think)
- Can be extended or replaced by something actually useful (but we know you won't)
Installation
composer require meedeley/hello-world
source for learn :
How To Use
Artisan Command
php artisan hello:world or php artisan hello:world [name]
Controller File
use Meedeley\HelloWorld\Facades\HelloWorld;
HelloWorld::greet("Everyone");
HelloWorld::greet("Joko");
HelloWorld::greet("Morro");