nadimsheikh07/hello-composer

1.1.1 2019-12-25 15:09 UTC

This package is auto-updated.

Last update: 2024-09-26 02:06:36 UTC


README

Installation

$ composer require nadimsheikh07/hello-composer

Usage

The simplest usage of the library would be as follows:

<?php

require_once __DIR__ . '/vendor/autoload.php';

use nadimsheikh07\HelloWorld\Index;

$greeting = new Index();

echo $greeting->greet("Hello Composer");

?>