mirror of
https://gh.wpcy.net/https://github.com/deepmentation/OllamaPriority.git
synced 2026-07-16 12:40:56 +08:00
| .. | ||
| src | ||
| .gitignore | ||
| composer.json | ||
| readme.md | ||
| test.php | ||
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.