ias / infoblox
Provides a PHP client library and Symfony bundle for interacting with Infoblox Grid Manager
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=8.2
- ext-json: *
- guzzlehttp/guzzle: ^7.0
- symfony/config: ^6.1.0
- symfony/dependency-injection: ^6.1.0
- symfony/http-kernel: ^6.1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- phpmd/phpmd: ^2.10
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^1.6
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.1
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2025-02-07 16:19:29 UTC
README
This project provides a PHP client library and Symfony bundle for interacting with Infoblox Grid Manager.
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require ias/infoblox
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require ias/infoblox
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
IAS\InfobloxBundle\IASInfobloxBundle::class => ['all' => true],
];
Configure the bundle by adding the following container parameters:
ib_grid_manager_url: 'https://ipam.example.com'
ib_username: username
ib_password: password
Usage Example
require 'vendor/autoload.php';
$client = new \GuzzleHttp\Client(['base_uri' => 'https://ipam.example.com/wapi/v2.7.1/', 'auth' => ['username', 'password']]);
$api = new \IAS\Infoblox\Wapi($client);
try {
$result = $api->get('ipv4address', ['ip_address' => '172.16.13.38']);
print_r($result);
} catch (\IAS\Infoblox\WapiException $e) {
print($e->getMessage());
}
Symfony Bundle Usage Example
$api = $this->container->get('infoblox.wapi');
try {
$result = $api->get('ipv4address', ['ip_address' => '172.16.13.38']);
print_r($result);
} catch (\IAS\Infoblox\WapiException $e) {
print($e->getMessage());
}
Although the infoblox.wapi
service is public it is recommended instead to inject
interface IAS\Infoblox\WapiInterface
into a service class.
Developers
Requirements
- Composer
- GNU Make
- PHP
Build
make