A blank repository to use as stub for PHP libraries.
- PHP 5.4 and up
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";
Put some examples here.
You can run the test suite with the following command:
phpunit --bootstrap tests/bootstrap.php .
This library is licensed under the MIT license.