prmd/hello_prmd

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

First Package

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/prmd/hello_prmd

1.0 2021-04-14 12:51 UTC

This package is auto-updated.

Last update: 2025-11-15 20:12:54 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());