-
Notifications
You must be signed in to change notification settings - Fork 0
Update component #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update component #27
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Contributing | ||
|
|
||
| Use the standard package commands before sending changes: | ||
|
|
||
| ```bash | ||
| composer fix | ||
| composer test | ||
| composer test-bc | ||
| ``` | ||
|
|
||
| [Report issues](https://github.com/softspring/user-bundle/issues) and [send Pull Requests](https://github.com/softspring/user-bundle/pulls) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # User Bundle Features | ||
|
|
||
| Functional definition for `softspring/user-bundle`. | ||
|
|
||
| ## Purpose | ||
|
|
||
| - Provide a reusable user layer for Symfony applications. | ||
| - Cover common user lifecycle workflows without forcing a fixed application model. | ||
| - Offer extension points so projects can adapt behavior and persistence. | ||
|
|
||
| ## Main Features | ||
|
|
||
| - Base user model contracts and composable traits for: | ||
| - identifiers | ||
| - password support | ||
| - enabled status | ||
| - name and surname | ||
| - locale | ||
| - avatar | ||
| - admin/super-admin roles | ||
| - User account workflows: | ||
| - login | ||
| - registration | ||
| - email confirmation | ||
| - password reset request and reset confirmation | ||
| - account settings update (email, username, password) | ||
| - Administration workflows: | ||
| - users management | ||
| - administrators management | ||
| - invitations | ||
| - access history | ||
| - Optional OAuth integration points. | ||
| - Doctrine filters for user/admin visibility. | ||
| - Mailers, MIME classes, events, and manipulators for user lifecycle actions. | ||
| - Console commands for common user and admin operations. | ||
|
|
||
| ## Integration And Extension | ||
|
|
||
| - Integrates with Symfony Security, Twig, Validator, Translation, and HTTP components. | ||
| - Integrates with Doctrine ORM/Doctrine Bundle. | ||
| - Integrates with Softspring packages such as: | ||
| - `permissions-bundle` | ||
| - `crudl-controller` | ||
| - `twig-extra-bundle` | ||
| - `doctrine-query-filters` | ||
| - `doctrine-target-entity-resolver` | ||
| - Allows custom application entities by implementing bundle interfaces and composing provided traits. | ||
| - Supports custom service overrides for controllers, managers, and mailers through Symfony configuration. | ||
|
|
||
| ## Expected Capabilities | ||
|
|
||
| - Must work with the supported dependency matrix of this line, including Symfony `6.4`, `7.x`, and `8.x`. | ||
| - Must keep both regular and lowest dependency validation workflows working (`composer test` and `composer test-bc`). | ||
| - Must keep user-facing and admin-facing user workflows stable across minor releases in the same line. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # Security Policy | ||
|
|
||
| ## Supported Versions | ||
|
|
||
| Only the current stable line and the current development line receive security updates. | ||
|
|
||
| | Version | Supported | | ||
| | ------- | --------- | | ||
| | 6.0.x | Yes | | ||
| | 5.5.x | Yes | | ||
| | < 5.5 | No | | ||
|
|
||
| ## Reporting a Vulnerability | ||
|
|
||
| Please report security issues privately. | ||
|
|
||
| Do not open public GitHub issues for security vulnerabilities. | ||
|
|
||
| Send the report to: `security@softspring.es` | ||
|
|
||
| Please include: | ||
|
|
||
| - affected package | ||
| - affected version | ||
| - steps to reproduce | ||
| - impact description | ||
| - any suggested fix or mitigation if available | ||
|
|
||
| We will review the report, confirm whether it is a valid vulnerability, and contact you with the next steps. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.