2017 © Pedro Peláez
 

library laravel-dynamodb-migrations

Create Migrations (version control) for DynamoDB

image

quankim/laravel-dynamodb-migrations

Create Migrations (version control) for DynamoDB

  • Monday, July 10, 2017
  • by quanvh
  • Repository
  • 0 Watchers
  • 5 Stars
  • 571 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 6 Versions
  • 27 % Grown

The README.md

Laravel Package: Migrations for DynamoDB

Install

  • Composer install
composer require quankim/laravel-dynamodb-migrations
  • Install service provider
// config/app.php
    'providers' => [
        ...
        QuanKim\LaravelDynamoDBMigrations\DynamoDBMigrationServiceProvider::class
        ...
    ];
  • Config DynamoDB
// config/aws.php
    use Aws\Laravel\AwsServiceProvider;

    return [

        /*
        |--------------------------------------------------------------------------
        | AWS SDK Configuration
        |--------------------------------------------------------------------------
        |
        | The configuration options set in this file will be passed directly to the
        | `Aws\Sdk` object, from which all client objects are created. The minimum
        | required options are declared here, but the full set of possible options
        | are documented at:
        | http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/configuration.html
        |
        */
        'credentials' => [
            'key'    => env('AWS_ACCESS_KEY_ID', ''),
            'secret' => env('AWS_SECRET_ACCESS_KEY', ''),
        ],
        'region' => env('AWS_REGION', 'us-east-1'),
        'version' => 'latest',
        'ua_append' => [
            'L5MOD/' . AwsServiceProvider::VERSION,
        ],
        'endpoint' => env('AWS_ENDPOINT', ''),
        'http' => [
            'verify' => false,
        ]
    ];

The Versions

10/07 2017

dev-master

9999999-dev

Create Migrations (version control) for DynamoDB

  Sources   Download

The Requires

 

by Vo Hong Quan

10/07 2017

2.1

2.1.0.0

Create Migrations (version control) for DynamoDB

  Sources   Download

The Requires

 

by Vo Hong Quan

10/07 2017

2.0

2.0.0.0

Create Migrations (version control) for DynamoDB

  Sources   Download

The Requires

 

by Vo Hong Quan

10/07 2017

1.2.1

1.2.1.0

Create Migrations (version control) for DynamoDB

  Sources   Download

The Requires

 

by Vo Hong Quan

10/07 2017

1.2

1.2.0.0

Create Migrations (version control) for DynamoDB

  Sources   Download

by Vo Hong Quan

10/01 2017

1.0

1.0.0.0

Create Migrations (version control) for DynamoDB

  Sources   Download

by Vo Hong Quan