ocramius/version-eye-module

This package is abandoned and no longer maintained. No replacement package was suggested.

VersionEye Module for Zend Framework 2

1.0.0 2013-01-27 01:19 UTC

This package is auto-updated.

Last update: 2022-02-01 12:23:26 UTC


README

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.