Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grafiteinc/auth
https://github.com/grafiteinc/auth
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/grafiteinc/auth
- Owner: GrafiteInc
- License: mit
- Created: 2023-04-25T03:20:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-27T14:01:34.000Z (3 months ago)
- Last Synced: 2024-09-28T16:05:48.110Z (about 2 months ago)
- Language: PHP
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
![Grafite Auth](GrafiteAuth-banner.png)
**Auth** - A handy set of Auth tools for Laravel.
[![Build Status](https://github.com/GrafiteInc/Auth/workflows/PHP%20Package%20Tests/badge.svg?branch=main)](https://github.com/GrafiteInc/Auth/actions?query=workflow%3A%22PHP+Package+Tests%22)
[![Maintainability](https://api.codeclimate.com/v1/badges/70e073844adaa608af33/maintainability)](https://codeclimate.com/github/GrafiteInc/Auth/maintainability)
[![Packagist](https://img.shields.io/packagist/dt/grafite/Auth.svg)](https://packagist.org/packages/grafite/Auth)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://packagist.org/packages/grafite/Auth)The Auth package lets you generate forms as well as fields with standard make commands. Inside your forms for models you can specify the fields that need to be generated and then simply pass the form to the view. No more writing Auth forms, error handling etc. It can handle Eloquent relationships and easily work with ajax requests for more dynamic form submissions.
##### Author(s):
* [Matt Lantz](https://github.com/mlantz) ([@mattylantz](http://twitter.com/mattylantz), mattlantz at gmail dot com)## Requirements
1. PHP 7.3+|8.1+
2. OpenSSL## Compatibility and Support
| Laravel Version | Package Tag | Supported |
|-----------------|-------------|-----------|
| ^7.x - ^11.x | 1.x | yes |### Installation
Start a new Laravel project:
```php
composer create-project laravel/laravel your-project-name
```Then run the following to add Forms
```php
composer require "grafite/auth"
```Time to publish those assets!
```php
php artisan vendor:publish --provider="Grafite\Auth\AuthProvider"
```## Documentation
[https://docs.grafite.ca/utilities/auth](https://docs.grafite.ca/utilities/auth)
## License
Auth is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)### Bug Reporting and Feature Requests
Please add as many details as possible regarding submission of issues and feature requests### Disclaimer
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.