valentininua/helloworld

this is a hello world

Installs: 69

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/valentininua/helloworld

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

This package is not auto-updated.

Last update: 2025-10-01 09:17:30 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.