Download the PHP package magium/mcm-aws-factory without Composer
On this page you can find all versions of the php package magium/mcm-aws-factory. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download magium/mcm-aws-factory
More information about magium/mcm-aws-factory
Files in magium/mcm-aws-factory
Package mcm-aws-factory
Short Description A simple library for managing AWS credentials using the Magium Configuration Manager
License Apache-2.0
Informations about the package mcm-aws-factory
AWS API Factory for the Magium Configuration Manager
This library provides an interface for the aws/aws-sdk-php library so you can use it with the Magium Configuration Manager. Often applications will have some kind of static configuration mechanism, such as XML files, JSON files, YAML files, or PHP files. There's nothing necessarily wrong with that, but what it does is merge your deployment and configuration concerns. The Magium Configuration Manager (MCM) breaks that dependency so you can manage configuration separately from your deployment.
Setup
Once it is installed you need to initialize the Magium Configuration Manager (MCM) for your project using the magium-configuration
commnand. You can find it in vendor/bin/magium-configuration
or, if that doesn't work you can run php vendor/magium/configuration-manager/bin/magium-configuration
. For the purpose of this documentation we will simple call it magium-configuration
.
Configuration
First, list all the configuration keys so you can see what they are.
Then you need to set the settings:
Then you need to build the configuration:
Usage
Next up, in your application code run something like this:
You can try this in the [test/get-security-groups.php](sample test script).