2017 © Pedro Peláez
 

library obb-app-service-provider

App for OBB

image

goldenplanetdk/obb-app-service-provider

App for OBB

  • Tuesday, January 2, 2018
  • by goldenplanet
  • Repository
  • 11 Watchers
  • 0 Stars
  • 126 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

OBB app Service Provider

Install

composer require goldenplanetdk/obb-app-service-provider "dev-master"
use GP\App\Provider\Service\AuthorizeServiceProvider;

$app->register(new AuthorizeServiceProvider(), $parameters);

Events:, (*1)

app.installation.success app.uninstalled, (*2)

Create DB table, (*3)

CREATE TABLE `sessions` (
    `sess_id` VARCHAR(128) NOT NULL PRIMARY KEY,
    `sess_data` BLOB NOT NULL,
    `sess_time` INTEGER UNSIGNED NOT NULL,
    `sess_lifetime` MEDIUMINT NOT NULL
) COLLATE utf8_bin, ENGINE = InnoDB;


CREATE TABLE `installations` (
  id                 INT UNSIGNED AUTO_INCREMENT NOT NULL,
  shop               VARCHAR(256)                NOT NULL
  COLLATE utf8_unicode_ci,
  token              VARCHAR(255)                NOT NULL
  COLLATE utf8_unicode_ci,
  is_secure_protocol TINYINT(1)                  NOT NULL,
  created_at         DATETIME                    NOT NULL,
  PRIMARY KEY (id)
)
  DEFAULT CHARACTER SET utf8
  COLLATE utf8_unicode_ci
  ENGINE = InnoDB;

License

MIT, (*4)

The Versions

02/01 2018

dev-master

9999999-dev

App for OBB

  Sources   Download

MIT

The Requires

 

by Eugene Stepanov

06/06 2017

v0.1

0.1.0.0

App for OBB

  Sources   Download

MIT

The Requires

 

by Eugene Stepanov

06/06 2017

dev-protocol-fix

dev-protocol-fix

App for OBB

  Sources   Download

MIT

The Requires

 

by Eugene Stepanov