2017 © Pedro Peláez
 

library zendserverapi

Zend Server API Wrapper

image

zendserverapi/zendserverapi

Zend Server API Wrapper

  • Tuesday, December 17, 2013
  • by iwalz
  • Repository
  • 2 Watchers
  • 4 Stars
  • 399 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 4 Forks
  • 11 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Zend Server API

Master: Build Status, (*1)

PHP Doc, (*2)

Documentation, (*3)

Installation via composer

To install the Zend Server API, your composer.json file should look like this:, (*4)

{
  "repositories": [
    {
            "type": "composer",
            "url": "http://packages.zendframework.com/"
        }
    ],
  "require": {
    "zendserverapi/zendserverapi": "dev-master"
  },
  "minimum-stability": "dev"
}

Run composer install from your project root and you should be ready to go., (*5)

Please note:You don't really need the repositories section in your composer.json - the side effect will be, that you've the whole zf2 framework installed via composer. The library still works as expected, but there will be an overhead during installation., (*6)

Configure your servers

You can find the configuration file, starting from your project root, at vendor/zendserverapi/zendserverapi/config/config.php., (*7)

A valid configfile may look like this:, (*8)

<?php

return array(
  "servers" => array (
    # Contains a valid default config
    "general" => array(
      "version" => \ZendService\ZendServerAPI\Version::ZS56,
      "apiName" => "api",
      "fullApiKey" => "bee698dde6a95de71932d65cb655c31fc4ea04c1fabaf6f0a1b852617eac32ab",
      "readApiKey" => "",
      "host" => "10.0.1.100",
      "port" => "10081"
    )
  ),
  "settings" => array (
    'loglevel' => \Zend\Log\Logger::DEBUG,
    'proxyHost' => 'proxy',
    'proxyPort' => 8080
  )
);

Please note: you can manage multiple servers within this configfile:, (*9)

<?php

return array(
  "servers" => array (
    # Contains a valid default config
    "general" => array(
      "version" => \ZendService\ZendServerAPI\Version::ZS56,
      "apiName" => "api",
      "fullApiKey" => "bee698dde6a95de71932d65cb655c31fc4ea04c1fabaf6f0a1b852617eac32ab",
      "readApiKey" => "",
      "host" => "10.0.1.100",
      "port" => "10081"
    ),
    "production" => array(
      "version" => \ZendService\ZendServerAPI\Version::ZSCM56,
      "apiName" => "admin",
      "fullApiKey" => "f49c7cd904b631ed1de43727a7c9ccca7324688482b19140a778d9b5020ca369",
      "readApiKey" => "",
      "host" => "10.20.30.1",
      "port" => "10081"
    ),
    "stage" => array(
      "version" => \ZendService\ZendServerAPI\Version::ZSCM56,
      "apiName" => "stageenvironment",
      "fullApiKey" => "71ce992da55734b0ad408264e721ca8cabfef4dba158ebeca3653eb290a49c00",
      "readApiKey" => "",
      "host" => "10.30.10.100",
      "port" => "10081"
    )
  ),
  "settings" => array (
    'loglevel' => \Zend\Log\Logger::DEBUG,
    'proxyHost' => 'proxy',
    'proxyPort' => 8080
  )
);

The name of the server is an (optional) parameter for every object that is used to perform actions on (Deployment, Monitor, Configuration,...). If you keep it empty, the "general" section is used as a default server., (*10)

The Versions

17/12 2013
04/12 2012

0.0.1

0.0.1.0 https://github.com/iwalz/zendserverapi

Zend Server API Wrapper

  Sources   Download

MIT

The Requires

 

api zend server