Giter VIP home page Giter VIP logo

ray.aurasqlmodule's People

Contributors

exsuzukishuhei avatar fiahfy avatar inaka-phper avatar jingu avatar koriym avatar kuma-guy avatar momospnr avatar mugeso avatar piotzkhider avatar yutakachiba avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ray.aurasqlmodule's Issues

Get DB credentials from environment variables at runtime

認証情報をランタイムに環境変数から取得

DB接続に必要な認証情報をコンパイルタイムでインストールするのではなく、ランタイムで環境変数から読み込みます。

現状:

$this->install(
    new AuraSqlModule(
        getenv('DB_DSN'),     // mysql:host=localhost;dbname=test',
        getenv('DB_USERNAME') // 'username',
        getenv('DB_PASSWORD') // 'password',
    );
);

上記のように値を渡すのではなく、環境変数のキーをAuraSqlEnvModuleに渡します。

$this->install(
    new AuraSqlEnvModule(
        'DB_DSN',      // getenv('DB_DSN')
        'DB_USERNAME'  // getenv('DB_USERNAME')
        'DB_PASSWORD'  // getenv('DB_PASSWORD')
    );
);

実行環境で渡された環境変数のキーが実行毎に読まれ認証情報として使われます。
これによりコンパイル時に実行環境の環境変数を用意する必要がなくなります。

(この機能はRay.Diのランタイム時に束縛を決定する機能=プロバイダー束縛で実現されていますが、この機能を持つDIはPHPではあまりありません。例えばSymfonyでは事前コンパイルのため実現できません。)

https://github.com/capsulephp/comparison#raydi


image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.