{"id":21963844,"url":"https://github.com/agence-adeliom/easy-admin-user-bundle","last_synced_at":"2025-04-24T00:24:08.885Z","repository":{"id":56941831,"uuid":"409584707","full_name":"agence-adeliom/easy-admin-user-bundle","owner":"agence-adeliom","description":"A Symfony bundle for EasyAdmin that provide basic user authentification flow","archived":false,"fork":false,"pushed_at":"2025-03-19T19:04:33.000Z","size":120,"stargazers_count":10,"open_issues_count":4,"forks_count":4,"subscribers_count":1,"default_branch":"2.x","last_synced_at":"2025-04-21T19:48:07.449Z","etag":null,"topics":["easyadmin","symfony","user"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agence-adeliom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-23T12:34:11.000Z","updated_at":"2025-03-19T19:04:37.000Z","dependencies_parsed_at":"2023-12-08T15:00:16.962Z","dependency_job_id":"c5e7e505-b7d2-4402-9356-32f81e7ea682","html_url":"https://github.com/agence-adeliom/easy-admin-user-bundle","commit_stats":{"total_commits":193,"total_committers":3,"mean_commits":64.33333333333333,"dds":0.227979274611399,"last_synced_commit":"f0de0fbaa6b4b71ed7c6e8be1a5749e9b1bb547f"},"previous_names":[],"tags_count":113,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-admin-user-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-admin-user-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-admin-user-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-admin-user-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agence-adeliom","download_url":"https://codeload.github.com/agence-adeliom/easy-admin-user-bundle/tar.gz/refs/heads/2.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250536587,"owners_count":21446761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["easyadmin","symfony","user"],"created_at":"2024-11-29T11:44:29.780Z","updated_at":"2025-04-24T00:24:08.870Z","avatar_url":"https://github.com/agence-adeliom.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![Adeliom](https://adeliom.com/public/uploads/2017/09/Adeliom_logo.png)\n[![Quality gate](https://sonarcloud.io/api/project_badges/quality_gate?project=agence-adeliom_easy-admin-user-bundle)](https://sonarcloud.io/dashboard?id=agence-adeliom_easy-admin-user-bundle)\n\n# Easy Admin User Bundle\n\nProvide a basic integration of user authentification and password reset in Easyadmin.\n\n\n## Features\n\n- A complete user flow\n- A command to generate a user account\n- A Easyadmin CRUD interface to manage users\n\n## Versions\n\n| Repository Branch | Version | Symfony Compatibility | PHP Compatibility | Status                     |\n|-------------------|---------|-----------------------|-------------------|----------------------------|\n| `3.x`             | `3.x`   | `6.4`, and `7.x`      | `8.2` or higher   | New features and bug fixes |\n| `2.x`             | `2.x`   | `5.4`, and `6.x`      | `8.0.2` or higher | Bug fixes                  |\n| `1.x`             | `1.x`   | `4.4`, and `5.x`      | `7.2.5` or higher | No longer maintained       |\n\n## Installation with Symfony Flex\n\nAdd our recipes endpoint\n\n```json\n{\n  \"extra\": {\n    \"symfony\": {\n      \"endpoint\": [\n        \"https://api.github.com/repos/agence-adeliom/symfony-recipes/contents/index.json?ref=flex/main\",\n        ...\n        \"flex://defaults\"\n      ],\n      \"allow-contrib\": true\n    }\n  }\n}\n```\n\nInstall with composer\n\n```bash\ncomposer require agence-adeliom/easy-admin-user-bundle\n```\n\n### Setup database\n\n#### Using doctrine migrations\n\n```bash\nphp bin/console doctrine:migration:diff\nphp bin/console doctrine:migration:migrate\n```\n\n#### Without\n\n```bash\nphp bin/console doctrine:schema:update --force\n```\n\n\n## Usage/Examples\n\nThe `easy-admin:add-user` command creates new users and saves them in the database:\n\n```bash\nbin/console easy-admin:add-user email password\n````\n\nBy default the command creates regular users. To create administrator users, add the `--admin` option:\n\n```bash\nbin/console easy-admin:add-user email password --admin\n````\n\nOr to create super-administrator users, add the `--super-admin` option:\n\n```bash\nbin/console easy-admin:add-user email password --super-admin\n````\n\nIf you omit any of the 2 required arguments, the command will ask you to provide the missing values:\n\n```bash\n# command will ask you for the password\nbin/console easy-admin:add-user email\n\n# command will ask you for the email and the password\nbin/console easy-admin:add-user\n````\n## Documentation\n\n[Check it here](doc/index.md)\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n\n## Authors\n\n- [@arnaud-ritti](https://github.com/arnaud-ritti)\n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagence-adeliom%2Feasy-admin-user-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagence-adeliom%2Feasy-admin-user-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagence-adeliom%2Feasy-admin-user-bundle/lists"}