PHP code example of promenadeco / doctrine-aws-auth
1. Go to this page and download the library: Download promenadeco/doctrine-aws-auth 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/ */
promenadeco / doctrine-aws-auth example snippets
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\ORMSetup;
use Promenade\Doctrine\Aws\Auth\Driver\IamMiddleware;
use Promenade\Doctrine\Aws\Auth\Token\RdsToken;
// ...
$ormConfig = ORMSetup::createAnnotationMetadataConfiguration([
'src/Entity',
]);
$tokenProvider = new RdsToken();
$ormConfig->setMiddlewares([
new IamMiddleware($tokenProvider),
]);
$entityManager = EntityManager::create(
[
'host' => 'example-db.abcdefghijkl.us-east-1.rds.amazonaws.com',
'port' => 3306,
'user' => 'iam_user',
'dbname' => 'test_db',
'driver' => 'pdo_mysql',
'driverOptions' => [
PDO::MYSQL_ATTR_SSL_CA => '/etc/ssl/certs/ca-certificates.crt',
PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT => false
],
],
$ormConfig
);