Download the PHP package franzliedke/auth-fluxbb without Composer

On this page you can find all versions of the php package franzliedke/auth-fluxbb. 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 auth-fluxbb

FluxBB 1.5 External Authentication

A package that allows for external authentication with FluxBB 1.5, integrating directly with the Laravel 4 framework.

Installation

Step 1: Install package through Composer

Add this line to the require section of your composer.json:

"franzliedke/auth-fluxbb": "1.0.*"

Alternately, you can use the Composer command-line tool by running this command:

composer require franzliedke/auth-fluxbb

Next, run composer install to actually install the package.

Step 2: Register the service provider

In your Laravel application, edit the app/config/app.php file and add this line to the providers array:

'FranzLiedke\AuthFluxBB\AuthFluxBBServiceProvider',

Step 3: Configure the location of your FluxBB installation

In order to read some configuration values, the path to your FluxBB installation needs to be configured.

To copy the package configuration file, run this command:

php artisan config:publish franzliedke/auth-fluxbb

You can then edit app/config/packages/franzliedke/auth-fluxbb/config.php. Change the path option to point to the root directory of your FluxBB installation. Make sure it ends with a slash.

Step 4: Enable the new authentication adapter

In your application, edit the app/config/auth.php file and set the driver option to "fluxbb1", so that it looks like this:

'driver' => 'fluxbb1',

Step 5 (optional): Set up views for resetting passwords

Follow the default Laravel instructions.

The reset system will work almost out of the box. Just change the reset callback function in the generated controller so that sha1() is used rather than Hash::make(), and use a DB query rather than Eloquent's save().

Note that this does not use the same reset process as in FluxBB, which simply generates and sends new passwords to the user rather than letting the user choose.

Usage

Once installed, you can use the authentication feature of Laravel as you always do, with Laravel magically using FluxBB's database and cookie behind the scenes.

Note: This package will not work if your FluxBB installation uses a SQLite2 database, as this database type is not supported by Laravel.


All versions of auth-fluxbb with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
illuminate/support Version ~4
illuminate/auth Version ~4
symfony/security Version ~2.4
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 franzliedke/auth-fluxbb contains the following files

Loading the files please wait ....