Skip to content
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

Sf3.4 compatibility #5

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -14,3 +14,11 @@ This bundle will be extendible and provide:
- Recover password functionality
- Being API accessable
- Ability to 'switch on' OAuth (Google/GitHub/Facebook/etc)

## Environment

Set the environment variables to be able to send e-mails.

```dotenv
USERBUNDLE_FROM_EMAILADDRESS=example@example.com
```
10 changes: 7 additions & 3 deletions composer.json
Expand Up @@ -14,10 +14,12 @@
"doctrine/doctrine-bundle": "^1.11",
"doctrine/orm": "^2.6",
"doctrine/persistence": "^1.1",
"league/html-to-markdown": "^4.8",
"symfony/config": "^3.4 || ^4.3",
"symfony/console": "^3.4 || ^4.3",
"symfony/dependency-injection": "^3.4 || ^4.3",
"symfony/doctrine-bridge": "^3.4 || ^4.3",
"symfony/dom-crawler": "^3.4 || ^4.3",
"symfony/event-dispatcher": "^3.4 || ^4.3",
"symfony/event-dispatcher-contracts": "^1.1",
"symfony/form": "^3.4 || ^4.3",
Expand All @@ -28,6 +30,7 @@
"symfony/routing": "^3.4 || ^4.3",
"symfony/security": "^3.4 || ^4.3",
"symfony/security-bundle": "^3.4 || ^4.3",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/templating": "^3.4 || ^4.3",
"symfony/translation": "^3.4 || ^4.3",
"symfony/twig-bundle": "^3.4 || ^4.3",
Expand All @@ -39,7 +42,8 @@
"maglnet/composer-require-checker": "^2.0",
"phpstan/phpstan": "^0.11.16",
"phpunit/phpunit": "^8.3",
"sensiolabs/security-checker": "^6.0"
"sensiolabs/security-checker": "^6.0",
"symfony/var-dumper": "^3.4 || ^4.3"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -67,9 +71,9 @@
"phpunit"
],
"analyse": [
"phpstan analyse --level=7 src/ tests/",
"security-checker security:check",
"composer-require-checker",
"security-checker security:check"
"phpstan analyse --level=7 src/ tests/"
]
},
"extra": {
Expand Down