Skip to content

Latest commit

 

History

History
70 lines (45 loc) · 2.01 KB

README.md

File metadata and controls

70 lines (45 loc) · 2.01 KB

Users (authenticatable)

Packagist PHP support Latest Version on Packagist Build Status Quality Score Total Downloads

Extended use of the default App\User Eloquent model used by Laravel applications.

Installation

You can install the package via composer:

composer require sfneal/users

In order to autoload to the auth helper functions add the following path to the autoload.files section in your composer.json.

"autoload": {
    "files": [
        "vendor/sfneal/users/src/helpers/auth.php"
    ]
},

To modify the user config file (like adding organization constants) publish the ServiceProvider with the following command.

php artisan vendor:publish --provider="Sfneal\Users\Providers\UsersServiceProvider"

Usage

// Usage description here

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email stephen.neal14@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

PHP Package Boilerplate

This package was generated using the PHP Package Boilerplate.