urbvik / cuserbase
A simple class for user authorisation to use with AnaxMVC
Requires
- php: >=5.4
- mos/cdatabase: dev-master
- mos/ctextfilter: dev-master
This package is not auto-updated.
Last update: 2025-03-27 03:32:59 UTC
README
A PHP-based package to use with "AnaxMVC".
I handles the user autorisation process.
HOW TO USE:
-
Create a new (project) folder and install AnaxMVC to it by cloning:
git clone https://github.com/mosbth/Anax-MVC.git.
-
Point browser to the file webroot/hello.php.
- IF it is working then continue.
-
Edit (or create) the file composer.json by adding the folowing line:
"require": {"urbvik/cuserbase": "dev-master"}
-
Also set the stability flags in the composer.json file to:
"minimum-stability": "dev", "prefer-stable" : true,
-
Then validate and install the packages via composer:
composer validate composer install --no-dev
-
Adjust database settings in app/config/config_mysql.php and create database table. Run the attached the file user.sql (located i same folder as this file).
-
Include mos CDatabaseBasics class to the demo project by including the composer generated autoloader. I.e by adding the line:
require "../../../autoload.php";
to the index.php file.
Then point your browser to [project-folder]/vendor/urbvik/cuserbase/webroot/ and the demo site shoud work.
Good Luck!
.
..: Copyright (c) 2016 Urban Vikdahl