Download the PHP package originphp/user_authentication without Composer

On this page you can find all versions of the php package originphp/user_authentication. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package user_authentication

User Authentication Plugin

The User Authentication plugin, provides user registration, sending a welcome emails, changing passwords, verifying user email addresses using email notifications. This plugin takes less than 2 minutes to add to your application and provides you with everything you need to get started.

Installation

Install the the UserAuthentication plugin

Setup

Load the AuthComponent in the AppController initialize method.

Load database schema for the User (you can change this later)

Load the Queue schema, which use for sending reset password and email verification notices.

Set the App.name value in your config/application.php

Usage

To signup

http://localhost:8000/signup

To login

http://localhost:8000/login

This will take you to the loginRedirect setting you setup in your AppController

To start the password reset process

http://localhost:8000/forgot_password

To view or edit your user profile

http://localhost:8000/profile

To view the API token

http://localhost:8000/token

If you are not going to be using API tokens then you can remove the route from config/routes.php

Creating App Source

To install the source into your app, and rename the namespaces, type in

Copy and paste the routes from plugins/user_authentication/config/routes.php to the config/routes.php

Copy the database schema from plugins/user_authentication/database/schema.php either into your existing schema file database/schema.php or into a new file.

Uninstall the Plugin

What Next

Now its all working fine, it is time to copy the schema for the User Authentication plugin and the queues into your application/schema.php.

Testing The Plugin

The controller integration test requires your AppController loads the AuthComponent, but other tests will run fine without this.

Load the schema for the UserAuthentication plugin and queues into the test database


All versions of user_authentication with dependencies

PHP Build Version
Package Version
Requires originphp/framework Version ^3.0
originphp/filesystem Version ^2.0|^3.0
originphp/plugin-installer Version ^1.3|^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package originphp/user_authentication contains the following files

Loading the files please wait ....