This bundle provides an PredictionIO integration for your Symfony2 Project.
PredictionIO Methods Supported
This Bundle is just a wrapper for the PredictionIO-PHP-SDK and will support all methods provided in the SDK.
- Add CodagPredictionIOBundle to your composer.json
- Enable the bundle
- Configure the bundle
{
"require": {
"codag/predictionio-bundle": "dev-master"
}
}
Update your project dependencies:
php composer.phar update codag/predictionio-bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Codag\PredictionIOBundle\CodagPredictionIOBundle(),
);
}
Yml configuration:
# app/config/config.yml
codag_prediction_io:
app_key: Your App Key
api_url: Your Api Url # Optional
This bundle provides the service codag.predictionio
<?php
$client = $this->get('codag.predictionio')->getClient();
For further implementation examples please see also our Sandbox.
##Contribute
If the bundle doesn't allow you to customize an option, I invite you to fork the project, create a feature branch, and send a pull request.
To ensure a consistent code base, you should make sure the code follows the Coding Standards.
##License
This bundle is under the MIT license. See the complete license here.