ocramius / version-eye-module
VersionEye Module for Zend Framework 2
Installs: 1 097
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 2
Forks: 7
Open Issues: 1
Requires
- zendframework/zend-http: >=2.0,<=2.2.x-dev
- zendframework/zend-mvc: >=2.0,<=2.2.x-dev
Requires (Dev)
- squizlabs/php_codesniffer: 1.*
- zendframework/zend-developer-tools: dev-master
This package is auto-updated.
Last update: 2022-02-01 12:23:26 UTC
README
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.