valentininua/helloworld

this is a hello world

dev-master 2018-02-25 22:28 UTC

This package is not auto-updated.

Last update: 2025-06-11 07:59:22 UTC


README

Usage

$ composer require valentininua/helloworld dev-master
$ touch helloWorld.php
<?php
require_once "vendor/autoload.php";

$hello = new Valentininua\Demo\Hello();
echo $hello->hello();
$ php helloWorld.php

It will print "Hello World!" then exit.