nisimpo / requisition
A requisition package
Requires
- php: ^8.0
- illuminate/console: ^9.21|^10.0|^11.0
- illuminate/filesystem: ^9.21|^10.0|^11.0
- illuminate/support: ^9.21|^10.0|^11.0
- illuminate/validation: ^9.21|^10.0|^11.0
- moneyphp/money: ^4.5
- spatie/laravel-permission: ^6.4
- symfony/console: ^6.0|^7.0
Requires (Dev)
- orchestra/testbench: ^7.35|^8.15|^9.0
- phpunit/phpunit: ^9.3|^10.4|^11.0
This package is auto-updated.
Last update: 2024-11-07 14:25:19 UTC
README
Introduction
This package does provide a basic starting point using Bootstrap, React, and / or Vue that will be helpful for many applications. By default, Laravel uses NPM to install both of these frontend packages.
This legacy package is a very simple authentication scaffolding built on the Bootstrap CSS framework. While it continues to work with the latest version of Laravel, you should consider using Laravel Breeze for new projects. Or, for something more robust, consider Laravel Jetstream.
Official Documentation
Supported Versions
Only the latest major version of Laravel UI receives bug fixes. The table below lists compatible Laravel versions:
Installation
The Bootstrap and Vue scaffolding provided by Nisimpo is located in the nisimpo/auth
Composer package, which may be installed in your new laravel app using Composer:
composer require nisimpo/auth:dev-main
Once the nisimpo/auth
package has been installed, you may install the frontend scaffolding using the ui
Artisan command:
// Generate login / registration scaffolding... php artisan ui bootstrap --auth
Setup the database of your choice in .env file
// Run migration and seeder to get started php artisan migrate:fresh --seed
Your good to go start app by using the following credentials
[user]: test@bizytech.com password: password
Integrating with the package direct from vendor on development
This is when your doing development in this package and you need to test you code from package. You dont need this if your using the package
"repositories": { "dev-package": { "type": "path", "url": "/Users/bizytech/Herd/auth", "options": { "symlink": true } } }
Add this to you composer.json
file of a new laravel application to test your package development directly
On the url replace the /Users/bizytech/Herd/auth
with the complete path of your package directory
License
Nisimpo AUTH is open-sourced software licensed under the MIT license.