2017 © Pedro Peláez
 

library commons

Helper classes and listeners for ZF2.

image

antuan-laptop/commons

Helper classes and listeners for ZF2.

  • Thursday, February 2, 2017
  • by Antuan Sehikyan
  • Repository
  • 0 Watchers
  • 0 Stars
  • 28 Installations
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Helper classes and listeners for ZF2., (*1)

Installation

The recommended way to get a working copy of this project is to clone the repository and use composer to install dependencies:, (*2)

curl -s https://getcomposer.org/installer | php --

You would then invoke composer to install dependencies. Add to your composer.json, (*3)

"antuan-laptop/commons": "dev-master"

require

"akrabat/akrabat-session": "dev-master"

Configuration

Once module installed, you could declare the module into your "config/application.config.php" by adding "LedsOAuth2"., (*4)

    'Application',
    'AkrabatSession',
    'Commons',

Setup Session Handling

Create a directory "session" in data directory with read/write access to your web server, (*5)

$ mkdir www/{approot}/data/session
$ chown -R apache:apache www/{approot}/data/session
$ chmod -R 0770 apache:apache www/{approot}/data/session

return array(
    'session' => array(
        'name' => 'referer',
        'save_path' => __DIR__ . '/../../../data/session'
    ),
);

The Versions

02/02 2017

dev-master

9999999-dev https://bitbucket.org/antuan-laptop/commons.git

Helper classes and listeners for ZF2.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.3.3

 

framework zf2 commons