Download the PHP package apigee/edge without Composer
On this page you can find all versions of the php package apigee/edge. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package edge
Short Description Apigee Edge API is a set of objects that communicate with Apigee's Edge management server via REST calls to manage developers, apps, and other entities.
License MIT
Homepage http://github.com/apigee/edge-php-sdk
Informations about the package edge
The 2.x version has moved
The newer 2.x version of this library has been released and is now available as Apigee Edge Client Library for PHP. This library is now in maintenance mode and is only accepting major bug fixes.
How to use the Apigee Edge PHP SDK
The Apigee Edge Management PHP SDK makes it easy to write PHP modules that use the Apigee Edge management API. By using the Management PHP SDK, you can communicate with Apigee Edge to manage developers, apps, roles, and permissions in the same way as the Apigee Developer Services portal.
Prerequisites and Installation Requirements
PHP Requirements
The Edge PHP SDK has the following prerequisites:
- PHP 7.1 or greater. This is required due to the SDK’s use of PHP namespaces and closures, and finally block.
- JSON support built into PHP. This is enabled in almost all default builds of PHP. Certain Linux distributions (such as Debian) may ship with JSON-C instead of the standard JSON, due to licensing restrictions; this is also acceptable.
- CURL support built into PHP.
- Composer, https://getcomposer.org/, should be installed and in your path.
Installation of Dependencies
As part of a Composer-based project
If your project is itself based on Composer, simply add “apigee/edge”
to your project’s composer.json file and run composer install --no-dev
. This
should install the Edge PHP SDK as well as all its dependencies into your
project’s vendor
dir, and it will integrate them all with your project’s class
autoloader. If you want to run the SDK’s unit tests, you should omit the
--no-dev
option.
Using Composer, but not as part of a Composer-based project
If you have installed Composer but choose not to use it to manage your project, you may register the Edge SDK and its dependencies as follows:
This will download and install all the dependencies. You will need to include
path/to/edge-sdk/vendor/autoload.php
in order to reap the benefits of having
all your classes autoloaded.
Without Composer
Installation without Composer is no longer supported.
Connecting to the Edge server
The core object used to configure your connection to Edge is Apigee\Util\OrgConfig. You can create one as follows:
Once you have created an OrgConfig object, you can pass it in the constructor to other objects: