/hello-world-php

"Hello world" in PHP (with TDD)

Primary LanguagePHPOtherNOASSERTION

NAME

Hello - Implement "Hello world" in PHP

SYNOPSIS

require 'path/to/Hello.php';

$hello = new Hello();
print $hello->greet(); # "Hello world!"

DESCRIPTION

The goal of this project is to exhibit test-driven development (TDD) in PHP.

PREREQUISITES

Composer is used to bring in the dependencies.

$ composer install

BUILD

Run the tests like so:

$ vendor/bin/phpunit tests/

AUTHOR

Tommy Stanton <tommystanton@gmail.com>