mirror of
https://gh.wpcy.net/https://github.com/freescout-help-desk/SampleModule.git
synced 2026-07-17 07:14:47 +08:00
381 B
381 B
Hello World Package for PHP Composer
This is a hello world package for php composer beginners tutorial.
Usage
$ composer require rivsen/hello-world dev-master
$ 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.