jean-pierregassin/hello-world

A package that is able to echo hello 'argument' (optional)

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jean-pierregassin/hello-world

0.0.3 2016-05-27 03:40 UTC

This package is not auto-updated.

Last update: 2025-10-12 01:18:44 UTC


README

A package that says hello world

Installation

Install this package via composer

composer require jean-pierregassin/hello-world

Usage

<?php

use Jean_PierreGassin\HelloWorld\HelloWorld;

$helloWorld = new HelloWorld();
$helloWorld->setName('Me');

$helloWorld->say();
// prints 'Hello Me!'