https://github.com/2lenet/credentialbundle
Manage Role / Group in Symfony. Replace the security.yml role hierarchy in complex application
https://github.com/2lenet/credentialbundle
Last synced: 3 months ago
JSON representation
Manage Role / Group in Symfony. Replace the security.yml role hierarchy in complex application
- Host: GitHub
- URL: https://github.com/2lenet/credentialbundle
- Owner: 2lenet
- Created: 2018-10-09T18:05:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T07:52:43.000Z (almost 2 years ago)
- Last Synced: 2024-11-06T17:12:30.469Z (over 1 year ago)
- Language: PHP
- Size: 166 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CredentialBundle
This bundle provides an easy credential manager to handle complex applications.
Its purpose is to facilitate the association between user groups and roles.

## Installation
```bash
composer require 2lenet/credential-bundle
```
## Setting up
Configure the `config/routes/credential.yaml` file:
```yaml
credential:
resource: '@LleCredentialBundle/Resources/config/routes.yaml'
```
Next, generate the migration:
```bash
php bin/console make:migration
```
Check that the changes are correct and execute them:
```bash
php bin/console doctrine:migrations:migrate
```
## Recipes
- [List of available commands](docs/commands.md)
- [Remote repository integration](docs/remote_repository.md)