project_name
is a PHP library for ... that ... by ...
Simple example:
<?php
// This file is generated by Composer
require_once 'vendor/autoload.php';
// ....
The first step to use project_name
is to download Composer:
$ curl -s http://getcomposer.org/installer | php
Now add project_name
to your app with Composer:
$ php composer.phar require project_full_name:stable_version
And that's it! Composer will automatically handle the rest.
Alternatively, you can manually add the dependency to composer.json
file...
{
"require": {
"project_full_name": "stable_version"
}
}
... and then install our dependencies using:
$ php composer.phar install
- PHP >= 5.3.8
- ...
See CONTRIBUTING.md file.
To run unit tests, you'll need a set of dev dependencies you can install using Composer:
php composer.phar install --dev
Once installed, just launch the following command:
phpunit
....
project_name
is released under the MIT License.
See the bundled LICENSE file for details.