Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 993 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 993 Bytes

fusonic/seed

Build Status Total Downloads

A blank repository to use as stub for PHP libraries.

Requirements

  • PHP 5.4 and up

Installation

The easiest installation method is using Composer: Simply create a composer.json file in the root of your project:

{
    "require": {
        "fusonic/opengraph": "@dev"
    }
}

Install composer and run install command:

curl -s http://getcomposer.org/installer | php
php composer.phar install

Once installed, include vendor/autoload.php in your script.

require "vendor/autoload.php";

Usage

Put some examples here.

Running tests

You can run the test suite with the following command:

phpunit --bootstrap tests/bootstrap.php .

License

This library is licensed under the MIT license.