web-developer-in-bangalore/composer-test-pack-by-shafeek

This package is abandoned and no longer maintained. No replacement package was suggested.

This library allows you to call hello world using composer library

dev-master 2020-04-14 13:33 UTC

This package is not auto-updated.

Last update: 2020-04-14 13:53:54 UTC


README

Link : https://www.w3resource.com/php/composer/create-publish-and-use-your-first-composer-package.php

Its a "hello world" composer test library pack

Installation using Composer

composer require web-developer-in-bangalore/composer-test-pack-by-shafeek:dev-master

Usage

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

use web_developer_in_bangalore\composer_test_pack_by_shafeek\Index;

$greeting = new Index();

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