PHP code example of demroos / api-gateway-bundle
1. Go to this page and download the library: Download demroos/api-gateway-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
demroos / api-gateway-bundle example snippets
return [
// other bundles,
Demroos\Bundle\ApiGatewayBundle\ApiGatewayBundle::class => ['all' => true]
];
namespace App\Routing;
use Demroos\Bundle\ApiGatewayBundle\Contracts\EndpointLoaderInterface;
use Demroos\Bundle\ApiGatewayBundle\Endpoint;
class ExampleEndpointLoader implements EndpointLoaderInterface
{
public function load(): array
{
$endpoints = [];
$endpoint = new Endpoint(
'api_example',
'/api/example',
'POST'
);
$endpoints[] = $endpoint;
return $endpoints;
}
}