Package Data | |
---|---|
Maintainer Username: | SamKitano |
Maintainer Contact: | sam.kitano@gmail.com (samkitano) |
Package Create Date: | 2017-07-23 |
Package Last Update: | 2017-11-19 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:02:14 |
Package Statistics | |
---|---|
Total Downloads: | 185 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 1 |
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.
v1
PHP >=5.6.4
Laravel 5.4.*
v2
PHP >=7
Laravel 5.5.*
A clean, freshly installed Laravel is not required, but recommended.
1 - Require with composer
composer require samkitano/aktiv8me
2 - Run aktiv8me
php artisan make:aktiv8me
3 - Run migrations
php artisan migrate
Done!
1 - Require with composer
composer require samkitano/aktiv8me:1.*
2 - Add Service Provider to providers array in config/app.php
Kitano\Aktiv8me\Aktiv8meServiceProvider::class,
3 - Run aktiv8me
php artisan make:aktiv8me
4 - Run migrations
php artisan migrate
Done!
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.
| 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. |
The configuration file config/Aktiv8me.php contains sensible defaults, and sets up a few easy to config options:
More details available in the config file itself.
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.
Is always welcome, in all forms: Suggestions, Bug reports, Security issues, Pull requests, Translations, Documentation, Tests...
Open-sourced software licensed under the MIT license