Download the PHP package samkitano/aktiv8me without Composer

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

Build Status

Aktiv8me

Authentication System for Laravel 5.4. and 5.5. with email user activation

This package adds an email verification, a.k.a. account activation feature to the built-in Laravel Authentication System. Upon registration, users will automatically recieve an email containing an activation link, which will allow to activate their registrations.

NOTE: email tests (Travis) are temporarily disabled due to some Mailthief issues.

Requirements

v1

PHP >=5.6.4

Laravel 5.4.*

v2

PHP >=7

Laravel 5.5.*

Before Installation

A clean, freshly installed Laravel is not required, but recommended.

Installation (v2 - Laravel 5.5.*)

1 - Require with composer

2 - Run aktiv8me

3 - Run migrations

Done!

Installation (v1 - Laravel 5.4.*)

1 - Require with composer

2 - Add Service Provider to providers array in

3 - Run aktiv8me

4 - Run migrations

Done!

After Installation

There is no need to publish any assets at all. However, it is always possible to publish config and language files by running php artisan vendor:publish

IMPORTANT: Email settings must be configured in config/mail.php to suit each project requirements!

If for some reason a reinstall is needed, running php artisan make:aktiv8me again will prompt the developer to choose either to skip, overwrite, or backup each one of the involved files. This may come in handy to reset individual files to their defaults, and to play around/test the package. Backed up files will be stored with a 3 digit numbered extension.

Notifications (email compositions) are located in app/Notifications/Aktiv8me.

Included translations:

NOTE: Translations are provided ONLY for this package's resources. Validation errors are NOT translated.

If not a fresh Laravel installation, the generated routes may have to be re-arranged in the routes/web.php file.

Usage

Command Action Description
php artisan make:aktiv8me Default installation Normal installation/reinstall. Files will be backed up.
php artisan make:aktiv8me --s Skip Backup files Do not backup files during installation/reinstall.
php artisan make:aktiv8me --r Remove Backed up files Not an uninstall. Removes ALL backed up files.

Configuration

The configuration file config/Aktiv8me.php contains sensible defaults, and sets up a few easy to config options:

1) Option to disable verification, or to allow a number of tokens per registered user 2) Option to send a welcome email after successful activation 3) Option to set a Token expiration time 4) Option to auto-resend a new token if the used one is expired 5) Option to auto-login after verification

More details available in the config file itself.

Notes

All redirections are pointing to '/' or to the required Forms, when needed. Thus, if a project requires a Dashboard or an Admin section, developers will have to set up their own resources and redirections.

The default Views layouts/app.blade.php and welcome.blade.php have been modified in order to support alerts for flashed messages, just to make it easier for Devs to test the package before starting their own project workflow.

Unless otherwise specified (artisan make:aktiv8me --s), all of the original Laravel's default files will be renamed with an '.original' extension, and kept on their original directories, for convenience.

The package keeps a list of all backed up files. Running php artisan make:aktiv8me --r will remove ALL of them.

Flashed messages and JSON responses are set by the package, and they contain adequate information for most applications.

Contribution

Is always welcome, in all forms: Suggestions, Bug reports, Security issues, Pull requests, Translations, Documentation, Tests...

License

Open-sourced software licensed under the MIT license


All versions of aktiv8me with dependencies

PHP Build Version
Package Version
Requires php Version >=7
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 samkitano/aktiv8me contains the following files

Loading the files please wait ....