jarrus90/yii2-user-purse

This package is abandoned and no longer maintained. No replacement package was suggested.

Yii2 system currencies management

Installs: 140

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

0.1.0 2016-09-23 15:01 UTC

This package is not auto-updated.

Last update: 2023-05-24 05:50:13 UTC


README

Build Status

NOTE: Module is in initial development. Anything may change at any time.

Contributing to this project

Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.

License

Yii2-user-purse is released under the BSD-3-Clause License. See the bundled LICENSE.md for details.

##Requirements

YII 2.0

##Usage

  1. Install with Composer
"require": {
    "jarrus90/yii2-user-purse": "1.*",
},

php composer.phar update

Restrict and split frontend and backend applications

'modules' => [
    'user-purse' => [
        'as frontend' => 'jarrus90\UserPurse\filters\FrontendFilter',
    ],
],
'modules' => [
    'user-purse' => [
        'as backend' => 'jarrus90\UserPurse\filters\BackendFilter',
    ],
],