prmd/hello_prmd

There is no license information available for the latest version (1.0) of this package.

First Package

1.0 2021-04-14 12:51 UTC

This package is auto-updated.

Last update: 2024-04-15 16:40:11 UTC


README

This is my first package "hello_prmd"

Installation

composer require prmd/hello_prmd

Usage

if you want to print then follow below steps

  • Create index.php file on root directory
  • In index.php file first include autoload.php file from vendor folder
  • Create object for "HelloPrmd" class
  • Call method "printHello()"

Example index.php

<?php 
	require_once './vendor/autoload.php';
	
	$print = new \HelloPrmd\HelloPrmd();
	print_r($print->printHello());