https://github.com/fusonic/seed
A blank repository to use as stub for PHP libraries.
https://github.com/fusonic/seed
Last synced: 3 months ago
JSON representation
A blank repository to use as stub for PHP libraries.
- Host: GitHub
- URL: https://github.com/fusonic/seed
- Owner: fusonic
- License: mit
- Created: 2014-07-23T15:42:21.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-31T18:52:21.000Z (almost 12 years ago)
- Last Synced: 2025-12-27T14:11:02.727Z (7 months ago)
- Language: PHP
- Homepage: fusonic.github.io/seed
- Size: 344 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fusonic/seed
[](https://travis-ci.org/fusonic/seed)
[](https://packagist.org/packages/fusonic/seed)
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:
``` json
{
"require": {
"fusonic/opengraph": "@dev"
}
}
```
Install composer and run install command:
``` bash
curl -s http://getcomposer.org/installer | php
php composer.phar install
```
Once installed, include vendor/autoload.php in your script.
``` php
require "vendor/autoload.php";
```
## Usage
_Put some examples here._
## Running tests
You can run the test suite with the following command:
``` bash
phpunit --bootstrap tests/bootstrap.php .
```
## License
This library is licensed under the MIT license.