Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.23 KB

README.md

File metadata and controls

46 lines (32 loc) · 1.23 KB

VersionEye Module

Build Status

This library aims at providing a simple integration layer with the VersionEye API.

Installation

Suggested installation method is through composer:

php composer.phar require ocramius/version-eye-module:1.0.*

Setup

If you use Zend Framework 2, you can now enable this module in your application by adding it to config/application.config.php as VersionEyeModule.

After enabling it, you should visit the VersionEye website and get your API key.

You can then drop a new file called versioneye.local.php in your config/autoload/ directory, and put following in it:

<?php
return array(
    'version_eye_module' => array(
        'api_key' => 'YOUR_API_KEY_HERE',
    ),
);

That's it!

Toolbar

If you use Zend Framework 2 and this module, you may want to install ZendDeveloperTools.

This will allow you to have constant overview on the update status of the packages in your application.