updated admin lte theme bundle (#350)

This commit is contained in:
Kevin Papst
2018-10-08 20:58:21 +02:00
committed by GitHub
parent 2dbf433474
commit 92c665436a
2 changed files with 14 additions and 11 deletions

17
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "a26c523a27230af927eae4b468daadda", "content-hash": "e24287fc499f226174a891c385faddd9",
"packages": [ "packages": [
{ {
"name": "beberlei/DoctrineExtensions", "name": "beberlei/DoctrineExtensions",
@@ -1840,16 +1840,16 @@
}, },
{ {
"name": "kevinpapst/adminlte-bundle", "name": "kevinpapst/adminlte-bundle",
"version": "2.1", "version": "2.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/kevinpapst/AdminLTEBundle.git", "url": "https://github.com/kevinpapst/AdminLTEBundle.git",
"reference": "43840776d45cb86a4dbcb915efa582eb41c5a564" "reference": "8460d414056348ec0f7a79a12f051e649ae3958d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/kevinpapst/AdminLTEBundle/zipball/43840776d45cb86a4dbcb915efa582eb41c5a564", "url": "https://api.github.com/repos/kevinpapst/AdminLTEBundle/zipball/8460d414056348ec0f7a79a12f051e649ae3958d",
"reference": "43840776d45cb86a4dbcb915efa582eb41c5a564", "reference": "8460d414056348ec0f7a79a12f051e649ae3958d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1896,8 +1896,8 @@
"homepage": "https://www.kevinpapst.de" "homepage": "https://www.kevinpapst.de"
} }
], ],
"description": "Admin Theme based on the AdminLTE 2.4.8 for easy integration with Symfony 4", "description": "Admin theme bundle for Symfony 4 based on AdminLTE 2.4.8 with FOSUserBundle support",
"time": "2018-09-02T17:21:38+00:00" "time": "2018-10-07T22:12:27+00:00"
}, },
{ {
"name": "markbaker/complex", "name": "markbaker/complex",
@@ -4578,6 +4578,7 @@
], ],
"description": "Enforces Long Term Supported versions of Symfony components", "description": "Enforces Long Term Supported versions of Symfony components",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"abandoned": "symfony/flex",
"time": "2018-04-03T05:04:16+00:00" "time": "2018-04-03T05:04:16+00:00"
}, },
{ {
@@ -9101,7 +9102,7 @@
"php": "^7.1.3", "php": "^7.1.3",
"ext-intl": "*", "ext-intl": "*",
"ext-pdo": "*", "ext-pdo": "*",
"ext-pdo_sqlite": "*" "ext-zip": "*"
}, },
"platform-dev": [] "platform-dev": []
} }

View File

@@ -42,8 +42,10 @@ app.ERROR: Exception occurred while flushing email queue: Expected response code
``` ```
you might suffer from a wrong configuration (read the documentation linked above) and try a full featured SMTP URL with a dedicated user account for authentication: you might suffer from a wrong configuration (read the documentation linked above) and try a full featured SMTP URL with a dedicated user account for authentication:
``` ```
MAILER_URL=smtp://kimai@example.compassword@mx.example.com:587?encryption=tls&auth_mode=plain MAILER_URL=smtp://username:password@mx.example.com:587?encryption=tls&auth_mode=plain
``` ```
Password should not contain URL characters like '&@:', which can cause problems parsing the SMTP URL.
If you have to use one of these characters, you need to adjust the swiftmailer configuration at `config/packages/swiftmailer.yaml`.
If that still doesn't help, try to set a `local_domain` in the file `config/packages/local.yaml`: If that still doesn't help, try to set a `local_domain` in the file `config/packages/local.yaml`:
```yaml ```yaml