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

This package is auto-updated.

Last update: 2025-07-16 06:07:05 UTC


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");