nirav-chavda / hello-world-demo
This is just a demo package
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/nirav-chavda/hello-world-demo
Requires
- php: >=7.0.0
This package is not auto-updated.
Last update: 2025-10-27 17:20:33 UTC
README
This is my first custom package for displaying Hello World using composer.
Installation
Use the php dependency manager composer to install package.
composer require "nirav-chavda/hello-world-demo @dev"
Usage
require_once __DIR__ . '/../vendor/autoload.php'; use HelloWorld\SayHello;
Add the above lines at the top of your php file and then to call it , use
SayHello::world();
- You can also see this at test.php