jean-pierregassin/hello-world

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

Maintainers

Package info

github.com/Jean-PierreGassin/hello-world

pkg:composer/jean-pierregassin/hello-world

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.3 2016-05-27 03:40 UTC

This package is not auto-updated.

Last update: 2026-03-15 03:39:39 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!'