pras2309 / hello-world
this is a hello world repo for composer.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 10
pkg:composer/pras2309/hello-world
This package is auto-updated.
Last update: 2025-12-22 21:58:23 UTC
README
This is a hello world package for php composer beginners tutorial. read more from http://rivsen.github.io/post/how-to-publish-package-to-packagist-using-github-and-composer-step-by-step/
Usage
$ composer require pras2309/hello-world $ touch test.php
<?php require_once "vendor/autoload.php"; $hello = new Rivsen\Demo\Hello(); echo $hello->hello();
$ php test.php
It will print "Hello World!" then exit.