Commit graph

1730 commits

Author SHA1 Message Date
Phan An
650496707d Change PWA orientation 2019-03-17 12:13:58 +01:00
Phan An
7baba197d5 Update example nginx config for sw.js 2019-03-17 12:13:58 +01:00
Phan An
14e866f062 Update packages 2019-03-17 12:13:57 +01:00
dependabot[bot]
048b4f0a78 Bump barryvdh/laravel-ide-helper from 2.5.3 to 2.6.1 (#930)
Bumps [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper) from 2.5.3 to 2.6.1.
<details>
<summary>Commits</summary>

- [`7257110`](725711022b) Make autoload exception more specific ([#777](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/777))
- [`881f771`](881f77156c) Fix php 7.3 bug ([#772](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/772))
- [`0fad511`](0fad511954) Fix Bug PHP 7.3 & L5.8 ([#774](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/774))
- [`754bb4d`](754bb4d075) Add support for invokable classes as macro function ([#765](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/765))
- [`bcb881b`](bcb881b20d) Nested relations detection. ([#763](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/763))
- [`d00600d`](d00600d769) Include DocBloc’s from classes to allow deeper code inspection ([#745](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/745))
- [`858dd40`](858dd40844) Install doctrine/dbal on development ([#753](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/753))
- [`4cd11a4`](4cd11a4d33) Allow Laravel 5.8 ([#754](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/754))
- [`5439781`](5439781e7c) Update composer.json
- [`190bf07`](190bf07c05) fix: warning when call the instance method ([#735](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/735))
- See full diff in [compare view](https://github.com/barryvdh/laravel-ide-helper/compare/v2.5.3...v2.6.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=barryvdh/laravel-ide-helper&package-manager=composer&previous-version=2.5.3&new-version=2.6.1)](https://dependabot.com/compatibility-score.html?dependency-name=barryvdh/laravel-ide-helper&package-manager=composer&previous-version=2.5.3&new-version=2.6.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-03-14 08:57:39 +01:00
dependabot[bot]
6b5a8209d2 Bump phpstan/phpstan from 0.11.2 to 0.11.3 (#932)
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 0.11.2 to 0.11.3.
<details>
<summary>Release notes</summary>

*Sourced from [phpstan/phpstan's releases](https://github.com/phpstan/phpstan/releases).*

> ## 0.11.3
> This release comes with a complete rewrite of part of PHPStan's core which is in charge of code interpretation and type inference ([NodeScopeResolver](e4644b4a8f/src/Analyser/NodeScopeResolver.php)). You can check out the rewrite in this PR: [#1938](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1938) 
> 
> It's released as a minor version because it's fully backwards-compatible with previous version - no custom extensions and rules should break with this release. However, every time a bugfix in PHPStan is made, your CI build can fail because PHPStan simply got smarter and sees more types, or finds an error in your code it **should have already found**. (New rules are added only in major versions, like 0.10, 0.11, and upcoming 0.12.)
> 
> Users are usually happy about this - they get more bugs reported to them for free. But if you don't like the risk of your build failing every time new version of PHPStan is released, use `composer.lock` file and run `composer update` only manually. If you don't commit `composer.lock` for any reason, don't use the `^` or `~` version constraint - instead, lock to a specific version, like this: `"phpstan/phpstan": "0.11.3"`.
> 
> Bugfixes
> ==============
> 
> * Thanks to the rewrite ([#1938](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1938)), about 35 NodeScopeResolver-related bugs were fixed in total.
> * Assignments in conditions are finally supported (753ec783)! This haunted PHPStan users since the beginning. These issues are closed thanks to the fix:
>   * [#647](https://github-redirect.dependabot.com/phpstan/phpstan/issues/647), [#1510](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1510), [#1364](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1364), [#1908](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1908), [#1085](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1085), [#701](https://github-redirect.dependabot.com/phpstan/phpstan/issues/701)
> * Fixed array access on string ([#1896](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1896)), thanks [@&#8203;CZechBoY](https://github.com/CZechBoY)!
> * Fixed `array_slice` type loss with non-empty array (181424148f7aa8e419cd8565940a4d5081bacc8a), [#1919](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1919) 
> * Fixed analysing trait use from eval (a308deb01558fe5c9671df318b235ba7fcc73b35), [#1923](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1923) 
> * Fixed trait in eval with phpDoc (30a5ce4a84f7c7ccd763623ac03b2c6a53c4bdc4), [#1923](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1923)
> * Do not skip the rest of traits from TraitUse if one of them isn't in analysed files (5838040306be1e99798adf6f320b98c76f6c12c0)
> * Subclasses of "extra offset classes" are offset accessible too ([#1930](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1930)), thanks [@&#8203;zajca](https://github.com/zajca)!
> * Disallow `$this` in static closures ([#1907](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1907)), thanks [@&#8203;iluuu1994](https://github.com/iluuu1994)!
> * Fixed falsey context of array&hasOffset (13cef623d8762c4597924d0da0f5668b76353969), [#1942](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1942) 
> * Fixed invalid + operation detection for array&hasOffset (b5eeff17b7981f1ba015e03f35f005f53edb0c0b), [#1942](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1942) 
> 
> Improvements
> ==============
> 
> * Implement `filter_var` dynamic return type extension ([#1900](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1900)), thanks [@&#8203;iluuu1994](https://github.com/iluuu1994)!
> * Support `==` operator between boolean-able types (2a5f95d37011f067dc4e956bb38a992712b8c496)
> * Basic support for `get_class()` in `==` operator (df27a123b812211e172889235413e3d3095d6c0a)
> 
> Function signatures fixes
> ==============
> 
> * Fix void return typehint for `Ds\Set::first()` ([#1958](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1958)), thanks [@&#8203;demyan112rv](https://github.com/demyan112rv)!
</details>
<details>
<summary>Commits</summary>

- [`e4644b4`](e4644b4a8f) Additional StatementResult tests
- [`2fc53b9`](2fc53b9c8c) Reworked Scope::$currentlyAssignedExpressions with array keys
- [`622b1ab`](622b1ab8a7) Removed obsolete todos
- [`484fe29`](484fe29dda) Fix variable certainty after foreach with polluteScopeWithAlwaysIterableForea...
- [`5c6da6f`](5c6da6f46f) Fixed generalizing recursive type
- [`0af93d2`](0af93d24c8) Fixed generalizing scope for constant arrays nested inside general arrays
- [`e19e171`](e19e171ec0) Fixed build
- [`5c752a5`](5c752a5056) Check foreach key variable certainty in polluteScopeWithAlwaysIterableForeach...
- [`2a5e9c6`](2a5e9c6ec1) Fixed nested closure use by-ref that uses function/method return type
- [`0e0fac9`](0e0fac98a4) Introduce ExpressionContext that will allow taking more advantage of Scope im...
- Additional commits viewable in [compare view](https://github.com/phpstan/phpstan/compare/0.11.2...0.11.3)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=phpstan/phpstan&package-manager=composer&previous-version=0.11.2&new-version=0.11.3)](https://dependabot.com/compatibility-score.html?dependency-name=phpstan/phpstan&package-manager=composer&previous-version=0.11.2&new-version=0.11.3)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-03-14 08:57:27 +01:00
dependabot[bot]
8ef180de91 Bump symfony/dom-crawler from 3.4.22 to 3.4.23 (#927)
Bumps [symfony/dom-crawler](https://github.com/symfony/dom-crawler) from 3.4.22 to 3.4.23.
<details>
<summary>Commits</summary>

- [`d40023c`](d40023c057) Apply php-cs-fixer rule for array_key_exists()
- [`2c5d2df`](2c5d2df578) be keen to newcomers
- See full diff in [compare view](https://github.com/symfony/dom-crawler/compare/v3.4.22...v3.4.23)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=symfony/dom-crawler&package-manager=composer&previous-version=3.4.22&new-version=3.4.23)](https://dependabot.com/compatibility-score.html?dependency-name=symfony/dom-crawler&package-manager=composer&previous-version=3.4.22&new-version=3.4.23)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-03-14 08:57:16 +01:00
dependabot[bot]
79632daa8f Bump mpociot/laravel-apidoc-generator from 3.4.1 to 3.4.2 (#933)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.4.1 to 3.4.2.
<details>
<summary>Release notes</summary>

*Sourced from [mpociot/laravel-apidoc-generator's releases](https://github.com/mpociot/laravel-apidoc-generator/releases).*

> ## 3.4.2
> [Changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md#342---sunday-10-march-2019)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [mpociot/laravel-apidoc-generator's changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md).*

> ## [3.4.2] - Sunday, 10 March 2019
> ### Added
> - Ability to set cookies on response calls (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/471)
</details>
<details>
<summary>Commits</summary>

- [`61dc0fb`](61dc0fbe62) Update CHANGELOG.md
- [`f67e418`](f67e41847e) Merge pull request [#471](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/471) from zasan1017/feat/issue-468
- [`850e4cf`](850e4cf8d1) feat: cookies added to response_call.
- See full diff in [compare view](https://github.com/mpociot/laravel-apidoc-generator/compare/3.4.1...3.4.2)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.4.1&new-version=3.4.2)](https://dependabot.com/compatibility-score.html?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.4.1&new-version=3.4.2)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-03-14 08:56:58 +01:00
Phan An
ebd2a34035 Sync with core 2019-03-13 08:30:06 +01:00
Phan An
1782f8910a Add support for desktop PWA 2019-03-13 08:27:52 +01:00
Phan An
433586e1ac Cache PHPUnit result 2019-03-13 08:27:46 +01:00
dependabot[bot]
76068a424f Bump mpociot/laravel-apidoc-generator from 3.4.0 to 3.4.1 (#928)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.4.0 to 3.4.1.
<details>
<summary>Release notes</summary>

*Sourced from [mpociot/laravel-apidoc-generator's releases](https://github.com/mpociot/laravel-apidoc-generator/releases).*

> ## 3.4.1
> [CHANGELOG](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md#341---monday-4-march-2019)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [mpociot/laravel-apidoc-generator's changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md).*

> ## [3.4.1] - Monday, 4 March 2019
> ### Fixed
> - Support for Lumen 5.7 (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/467)
</details>
<details>
<summary>Commits</summary>

- [`46e7a34`](46e7a34b63) Update CHANGELOG.md
- [`6b31623`](6b316236af) Merge pull request [#467](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/467) from ItsiAdam/master
- [`2b91065`](2b91065588) Fix Lumen compatibility
- See full diff in [compare view](https://github.com/mpociot/laravel-apidoc-generator/compare/3.4.0...3.4.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.4.0&new-version=3.4.1)](https://dependabot.com/compatibility-score.html?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.4.0&new-version=3.4.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-03-05 19:56:03 +01:00
dependabot[bot]
a072fd49a4 Bump laravel/framework from 5.7.27 to 5.7.28 (#924)
Bumps [laravel/framework](https://github.com/laravel/framework) from 5.7.27 to 5.7.28.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/5.8/CHANGELOG-5.7.md)
- [Commits](https://github.com/laravel/framework/compare/v5.7.27...v5.7.28)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-28 10:59:25 +01:00
dependabot[bot]
defede8eac Bump mpociot/laravel-apidoc-generator from 3.3.2 to 3.4.0 (#925)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.3.2 to 3.4.0.
<details>
<summary>Release notes</summary>

*Sourced from [mpociot/laravel-apidoc-generator's releases](https://github.com/mpociot/laravel-apidoc-generator/releases).*

> ## 3.4.0
> [CHANGELOG](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md#340---wednesday-27-february-2019)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [mpociot/laravel-apidoc-generator's changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md).*

> ## [3.4.0] - Wednesday, 27 February 2019
> ### Added
> - Support for Laravel 5.8 (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/462)
> - Ability to annotate body parameters on FormRequest (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/460)
</details>
<details>
<summary>Commits</summary>

- [`b677e66`](b677e66fcd) Merge pull request [#464](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/464) from mpociot/analysis-qJjgoQ
- [`da6370c`](da6370c2c0) Update CHANGELOG.md
- [`e259d77`](e259d779ae) Apply fixes from StyleCI
- [`4fce81b`](4fce81ba71) Merge pull request [#460](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/460) from neonblack-at/allow-laravel-form-request-body-params
- [`83d5cca`](83d5cca8f4) Update variable names
- [`fd5b01e`](fd5b01e44d) Merge pull request [#462](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/462) from mpociot/shalvah-patch-1
- [`cccfa3b`](cccfa3b20e) Add support for Laravel 5.8
- [`15ae0b4`](15ae0b4d61) fix for php < 7.1.0
- [`e58d0d3`](e58d0d371e) make iteration clearer
- [`6de096a`](6de096a161) code style
- Additional commits viewable in [compare view](https://github.com/mpociot/laravel-apidoc-generator/compare/3.3.2...3.4.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.3.2&new-version=3.4.0)](https://dependabot.com/compatibility-score.html?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.3.2&new-version=3.4.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-02-28 10:59:12 +01:00
dependabot[bot]
482e5b8f6b Bump doctrine/dbal from 2.9.1 to 2.9.2 (#885)
Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 2.9.1 to 2.9.2.
- [Release notes](https://github.com/doctrine/dbal/releases)
- [Commits](https://github.com/doctrine/dbal/compare/v2.9.1...v2.9.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:19:02 +01:00
dependabot[bot]
559bdff5a1 Bump james-heinrich/getid3 from 1.9.16 to 1.9.17 (#910)
Bumps [james-heinrich/getid3](https://github.com/JamesHeinrich/getID3) from 1.9.16 to 1.9.17.
- [Release notes](https://github.com/JamesHeinrich/getID3/releases)
- [Changelog](https://github.com/JamesHeinrich/getID3/blob/master/changelog.txt)
- [Commits](https://github.com/JamesHeinrich/getID3/compare/v1.9.16...v1.9.17)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:18:49 +01:00
dependabot[bot]
ece3f7ff75 Bump symfony/dom-crawler from 3.4.20 to 3.4.22 (#907)
Bumps [symfony/dom-crawler](https://github.com/symfony/dom-crawler) from 3.4.20 to 3.4.22.
- [Release notes](https://github.com/symfony/dom-crawler/releases)
- [Changelog](https://github.com/symfony/dom-crawler/blob/master/CHANGELOG.md)
- [Commits](https://github.com/symfony/dom-crawler/compare/v3.4.20...v3.4.22)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:18:36 +01:00
dependabot[bot]
68c7d5bb2b Bump phpstan/phpstan from 0.10.6 to 0.11.2 (#914)
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 0.10.6 to 0.11.2.
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Commits](https://github.com/phpstan/phpstan/compare/0.10.6...0.11.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:18:19 +01:00
dependabot[bot]
9cac48a4d5 Bump mpociot/laravel-apidoc-generator from 3.3.0 to 3.3.2 (#915)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.3.0 to 3.3.2.
- [Release notes](https://github.com/mpociot/laravel-apidoc-generator/releases)
- [Changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mpociot/laravel-apidoc-generator/compare/3.3.0...3.3.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:18:03 +01:00
dependabot[bot]
564e9bfa53 Bump mockery/mockery from 1.2.0 to 1.2.2 (#916)
Bumps [mockery/mockery](https://github.com/mockery/mockery) from 1.2.0 to 1.2.2.
- [Release notes](https://github.com/mockery/mockery/releases)
- [Changelog](https://github.com/mockery/mockery/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mockery/mockery/compare/1.2.0...1.2.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:17:46 +01:00
dependabot[bot]
869d2a5980 Bump laravel/framework from 5.7.21 to 5.7.27 (#920)
Bumps [laravel/framework](https://github.com/laravel/framework) from 5.7.21 to 5.7.27.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/5.7/CHANGELOG-5.6.md)
- [Commits](https://github.com/laravel/framework/compare/v5.7.21...v5.7.27)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-20 14:17:32 +01:00
dependabot[bot]
6cd089ca2f Bump fideloper/proxy from 4.0.0 to 4.1.0 (#894)
Bumps [fideloper/proxy](https://github.com/fideloper/TrustedProxy) from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/fideloper/TrustedProxy/releases)
- [Commits](https://github.com/fideloper/TrustedProxy/compare/4.0.0...4.1.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-16 16:31:09 +01:00
dependabot[bot]
0cf4fffbfe Bump phpunit/phpunit from 7.5.1 to 7.5.2 (#895)
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 7.5.1 to 7.5.2.
<details>
<summary>Changelog</summary>

*Sourced from [phpunit/phpunit's changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md).*

> ## [7.5.2] - 2019-01-15
> 
> ### Fixed
> 
> * Fixed [#3456](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3456): Generator for Xdebug filter script does not handle directories with leading `.` correctly
> * Fixed [#3459](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3459): `[**requires**](https://github.com/requires)` function swallows digits at the end of function name
</details>
<details>
<summary>Commits</summary>

- [`7c89093`](7c89093bd0) Prepare release
- [`6bef716`](6bef716234) Merge branch '6.5' into 7.5
- [`6050504`](6050504ca5) Bump copyright year
- [`99bd534`](99bd534a8a) Fix CS/WS issue
- [`56e1bce`](56e1bcea42) Update ChangeLog
- [`afa7f01`](afa7f01095) feat(xdebug-filter-generator): improve directories paths
- [`be5f758`](be5f75805b) Merge branch '6.5' into 7.5
- [`a33f8d2`](a33f8d243c) Update php-cs-fixer
- [`eb22621`](eb22621779) Revert "Do not use Phive to manage php-cs-fixer (for now)"
- [`d44f244`](d44f2448e6) Merge branch '6.5' into 7.5
- Additional commits viewable in [compare view](https://github.com/sebastianbergmann/phpunit/compare/7.5.1...7.5.2)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.5.1&new-version=7.5.2)](https://dependabot.com/compatibility-score.html?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.5.1&new-version=7.5.2)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-01-16 16:30:58 +01:00
dependabot[bot]
1fc680408c Bump laravel/framework from 5.7.15 to 5.7.21 (#896)
Bumps [laravel/framework](https://github.com/laravel/framework) from 5.7.15 to 5.7.21.
<details>
<summary>Release notes</summary>

*Sourced from [laravel/framework's releases](https://github.com/laravel/framework/releases).*

> ## v5.7.21
> ## [v5.7.21 (2019-01-15)](https://github.com/laravel/framework/compare/v5.7.20...v5.7.21)
> 
> ### Fixed
> - Fixed `Blueprint::removeColumn()` ([#27115](https://github-redirect.dependabot.com/laravel/framework/pull/27115), [#27122](https://github-redirect.dependabot.com/laravel/framework/pull/27122))
> - Fixed allowing of null broadcast connection driver ([#27135](https://github-redirect.dependabot.com/laravel/framework/pull/27135))
> - Fixed `ModelMakeCommand::handle()` should always return `bool` value ([#27156](https://github-redirect.dependabot.com/laravel/framework/pull/27156))
> - Fixed `TestResponse::assertSessionDoesntHaveErrors()` when there is no errors ([#27145](https://github-redirect.dependabot.com/laravel/framework/pull/27145))
> - Fixed default message is localization twice in `403.blade.php` error page ([4a08120](4a081204d6))
> 
> ### Changed
> - Replaced `get_called_class()` to `static::class` ([#27146](https://github-redirect.dependabot.com/laravel/framework/pull/27146))
> - Re-throw `NoMatchingExpectationException` from `PendingCommand` ([#27158](https://github-redirect.dependabot.com/laravel/framework/pull/27158))
> 
> 
> ## v5.7.20
> ## [v5.7.20 (2019-01-08)](https://github.com/laravel/framework/compare/v5.7.19...v5.7.20)
> 
> ### Added
> - Added `chunkById` support in relations ([#26919](https://github-redirect.dependabot.com/laravel/framework/pull/26919))
> - Added `Collection::whereNotBetween` method ([#27028](https://github-redirect.dependabot.com/laravel/framework/pull/27028))
> - Allowed predefined log channels to change formatter from config ([#26895](https://github-redirect.dependabot.com/laravel/framework/pull/26895))
> - Allowed storage assertions (`FilesystemAdapter::assertExists` / `FilesystemAdapter::assertMissing`) to handle multiple files at once ([#26975](https://github-redirect.dependabot.com/laravel/framework/pull/26975))
> - Added `Adaptive Server connection failed` to `DetectsLostConnections` trait ([#27055](https://github-redirect.dependabot.com/laravel/framework/pull/27055))
> - Added `Route::originalParameters()` ([#27056](https://github-redirect.dependabot.com/laravel/framework/pull/27056))
> - Added `QueueFake::pushedJobs()` ([#27089](https://github-redirect.dependabot.com/laravel/framework/pull/27089), [695ffa1](695ffa1247))
> 
> ### Fixed
> - Prevents unnecessary queries when lazy loading empty relationships ([#26992](https://github-redirect.dependabot.com/laravel/framework/pull/26992))
> - Fixed broken `Command::setHidden` method ([#27005](https://github-redirect.dependabot.com/laravel/framework/pull/27005))
> - Fixed `Str::slug` method ([#27002](https://github-redirect.dependabot.com/laravel/framework/pull/27002))
> - Ignore `--seed` option for `artisan migrate --pretend` ([#27015](https://github-redirect.dependabot.com/laravel/framework/pull/27015)) 
> - Fixed `previousUrl` in the session if the call is `prefetch` ([#27017](https://github-redirect.dependabot.com/laravel/framework/pull/27017))
> - Fixed nullable `MorphTo` touching ([#27031](https://github-redirect.dependabot.com/laravel/framework/pull/27031))
> - Fixed `Collection::loadMissing()` with duplicate relation names ([#27040](https://github-redirect.dependabot.com/laravel/framework/pull/27040))
> - Fixed some commands ([#27020](https://github-redirect.dependabot.com/laravel/framework/pull/27020))
> - Ensured the command `context` is forwarded to calls ([#27012](https://github-redirect.dependabot.com/laravel/framework/pull/27012), [#27065](https://github-redirect.dependabot.com/laravel/framework/pull/27065))
> - Fixed `Collection::loadMorph()` issue relations loading issue ([#27081](https://github-redirect.dependabot.com/laravel/framework/pull/27081))
> 
> ### Changed
> - Removed `HasOneOrMany::update()` since `Builder::update()` already adds the `UPDATED_AT` timestamp. ([#27026](https://github-redirect.dependabot.com/laravel/framework/pull/27026))
> - Changed `Name or service not known` to `php_network_getaddresses: getaddrinfo failed: Name or service not known` in `DetectsLostConnections` trait ([#27054](https://github-redirect.dependabot.com/laravel/framework/pull/27054), [5459ac1](5459ac15b5))
> - Changed Eloquent `ApiResource merge()` methods to accept `JsonResource` object  ([#27068](https://github-redirect.dependabot.com/laravel/framework/pull/27068))
> - Stop email re-verification with same link ([#27070](https://github-redirect.dependabot.com/laravel/framework/pull/27070)) 
> 
> 
> ## v5.7.19
> ## [v5.7.19 (2018-12-18)](https://github.com/laravel/framework/compare/v5.7.18...v5.7.19)
> 
> ### Added
></tr></table> ... (truncated)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [laravel/framework's changelog](https://github.com/laravel/framework/blob/5.7/CHANGELOG-5.7.md).*

> ## [v5.7.21 (2019-01-15)](https://github.com/laravel/framework/compare/v5.7.20...v5.7.21)
> 
> ### Fixed
> - Fixed `Blueprint::removeColumn()` ([#27115](https://github-redirect.dependabot.com/laravel/framework/pull/27115), [#27122](https://github-redirect.dependabot.com/laravel/framework/pull/27122))
> - Fixed allowing of null broadcast connection driver ([#27135](https://github-redirect.dependabot.com/laravel/framework/pull/27135))
> - Fixed `ModelMakeCommand::handle()` should always return `bool` value ([#27156](https://github-redirect.dependabot.com/laravel/framework/pull/27156))
> - Fixed `TestResponse::assertSessionDoesntHaveErrors()` when there is no errors ([#27145](https://github-redirect.dependabot.com/laravel/framework/pull/27145))
> - Fixed default message is localization twice in `403.blade.php` error page ([4a08120](4a081204d6))
> 
> ### Changed
> - Replaced `get_called_class()` to `static::class` ([#27146](https://github-redirect.dependabot.com/laravel/framework/pull/27146))
> - Re-throw `NoMatchingExpectationException` from `PendingCommand` ([#27158](https://github-redirect.dependabot.com/laravel/framework/pull/27158))
> 
> 
> ## [v5.7.20 (2019-01-08)](https://github.com/laravel/framework/compare/v5.7.19...v5.7.20)
> 
> ### Added
> - Added `chunkById` support in relations ([#26919](https://github-redirect.dependabot.com/laravel/framework/pull/26919))
> - Added `Collection::whereNotBetween` method ([#27028](https://github-redirect.dependabot.com/laravel/framework/pull/27028))
> - Allowed predefined log channels to change formatter from config ([#26895](https://github-redirect.dependabot.com/laravel/framework/pull/26895))
> - Allowed storage assertions (`FilesystemAdapter::assertExists` / `FilesystemAdapter::assertMissing`) to handle multiple files at once ([#26975](https://github-redirect.dependabot.com/laravel/framework/pull/26975))
> - Added `Adaptive Server connection failed` to `DetectsLostConnections` trait ([#27055](https://github-redirect.dependabot.com/laravel/framework/pull/27055))
> - Added `Route::originalParameters()` ([#27056](https://github-redirect.dependabot.com/laravel/framework/pull/27056))
> - Added `QueueFake::pushedJobs()` ([#27089](https://github-redirect.dependabot.com/laravel/framework/pull/27089), [695ffa1](695ffa1247))
> 
> ### Fixed
> - Prevents unnecessary queries when lazy loading empty relationships ([#26992](https://github-redirect.dependabot.com/laravel/framework/pull/26992))
> - Fixed broken `Command::setHidden` method ([#27005](https://github-redirect.dependabot.com/laravel/framework/pull/27005))
> - Fixed `Str::slug` method ([#27002](https://github-redirect.dependabot.com/laravel/framework/pull/27002))
> - Ignore `--seed` option for `artisan migrate --pretend` ([#27015](https://github-redirect.dependabot.com/laravel/framework/pull/27015)) 
> - Fixed `previousUrl` in the session if the call is `prefetch` ([#27017](https://github-redirect.dependabot.com/laravel/framework/pull/27017))
> - Fixed nullable `MorphTo` touching ([#27031](https://github-redirect.dependabot.com/laravel/framework/pull/27031))
> - Fixed `Collection::loadMissing()` with duplicate relation names ([#27040](https://github-redirect.dependabot.com/laravel/framework/pull/27040))
> - Fixed some commands ([#27020](https://github-redirect.dependabot.com/laravel/framework/pull/27020))
> - Ensured the command `context` is forwarded to calls ([#27012](https://github-redirect.dependabot.com/laravel/framework/pull/27012), [#27065](https://github-redirect.dependabot.com/laravel/framework/pull/27065))
> - Fixed `Collection::loadMorph()` issue relations loading issue ([#27081](https://github-redirect.dependabot.com/laravel/framework/pull/27081))
> 
> ### Changed
> - Removed `HasOneOrMany::update()` since `Builder::update()` already adds the `UPDATED_AT` timestamp. ([#27026](https://github-redirect.dependabot.com/laravel/framework/pull/27026))
> - Changed `Name or service not known` to `php_network_getaddresses: getaddrinfo failed: Name or service not known` in `DetectsLostConnections` trait ([#27054](https://github-redirect.dependabot.com/laravel/framework/pull/27054), [5459ac1](5459ac15b5))
> - Changed Eloquent `ApiResource merge()` methods to accept `JsonResource` object  ([#27068](https://github-redirect.dependabot.com/laravel/framework/pull/27068))
> - Stop email re-verification with same link ([#27070](https://github-redirect.dependabot.com/laravel/framework/pull/27070)) 
> 
> 
> ## [v5.7.19 (2018-12-18)](https://github.com/laravel/framework/compare/v5.7.18...v5.7.19)
> 
> ### Added
> - Added `Illuminate\Support\Collection::whereBetween` method ([#26888](https://github-redirect.dependabot.com/laravel/framework/pull/26888))
> 
> ### Fixed
></tr></table> ... (truncated)
</details>
<details>
<summary>Commits</summary>

- [`25f7445`](25f74458a2) version
- [`d5d7259`](d5d72598ec) Merge pull request [#27158](https://github-redirect.dependabot.com/laravel/framework/issues/27158) from meyerluk/5.7
- [`87ca267`](87ca2676ce) Merge pull request [#27145](https://github-redirect.dependabot.com/laravel/framework/issues/27145) from shadoWalker89/patch-1
- [`4a08120`](4a081204d6) Revert "Missing localized strings ([#26751](https://github-redirect.dependabot.com/laravel/framework/issues/26751))"
- [`d1e7879`](d1e7879008) Merge pull request [#27156](https://github-redirect.dependabot.com/laravel/framework/issues/27156) from mindfullsilence/5.7
- [`a621f8a`](a621f8a809) [5.7] Fix assertSessionDoesntHaveErrors() when there is no errors
- [`90eb2e3`](90eb2e3db1) Re-throw NoMatchingExpectationException if method does not equal 'askQuestion'
- [`64b5ada`](64b5adacdc) Update ModelMakeCommand.php
- [`d818fd1`](d818fd18cc) [5.7] update changelog
- [`e087df5`](e087df50c4) Merge pull request [#27144](https://github-redirect.dependabot.com/laravel/framework/issues/27144) from jamesmirvine/recaller-performance
- Additional commits viewable in [compare view](https://github.com/laravel/framework/compare/v5.7.15...v5.7.21)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=laravel/framework&package-manager=composer&previous-version=5.7.15&new-version=5.7.21)](https://dependabot.com/compatibility-score.html?dependency-name=laravel/framework&package-manager=composer&previous-version=5.7.15&new-version=5.7.21)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-01-16 16:30:31 +01:00
Thien Nguyen
db9d00bc3b Fix Postman Collection link (#893) 2019-01-10 14:58:21 +01:00
dependabot[bot]
b019554f07 Bump pusher/pusher-php-server from 3.2.0 to 3.3.0 (#889)
Bumps [pusher/pusher-php-server](https://github.com/pusher/pusher-http-php) from 3.2.0 to 3.3.0.
<details>
<summary>Release notes</summary>

*Sourced from [pusher/pusher-php-server's releases](https://github.com/pusher/pusher-http-php/releases).*

> ## v3.3.0
> - **[ADDED]** Support for End-to-end encrypted channels for `triggerbatch`
> - **[FIXED]** `trigger` behavior with mixtures of encrypted and non-encrypted channels
</details>
<details>
<summary>Changelog</summary>

*Sourced from [pusher/pusher-php-server's changelog](https://github.com/pusher/pusher-http-php/blob/master/CHANGELOG.md).*

> ## 3.3.0 (2019-01-03)
> 
> [ADDED] Support for End-to-end encrypted channels for triggerbatch
> [FIXED] trigger behavior with mixtures of encrypted and non-encrypted channels
</details>
<details>
<summary>Commits</summary>

- [`5eb4ea2`](5eb4ea29db) v.3.3.0
- [`c3778c5`](c3778c554a) Add End-to-end encryption support for triggerbatch + tests
- [`910cf41`](910cf416c6) Fix trigger behaviour with mixed encrypted and non-encrypted channels + tests
- [`8fd6def`](8fd6def819) Merge pull request [#194](https://github-redirect.dependabot.com/pusher/pusher-http-php/issues/194) from samnela/remove-deprecated-testcase
- [`b92528f`](b92528fe92) Remove deprecated testcase implementation
- [`82a870c`](82a870cf3e) Merge pull request [#196](https://github-redirect.dependabot.com/pusher/pusher-http-php/issues/196) from pusher/remove-ddn
- [`0a104e6`](0a104e6735) Merge pull request [#195](https://github-redirect.dependabot.com/pusher/pusher-http-php/issues/195) from pusher/handle-client-error
- [`fa573b2`](fa573b2275) Rename ddn_domain to channels_domain
- [`bf9bebc`](bf9bebcd2a) Make different request failures cases explicit
- [`ad5ef1e`](ad5ef1ee06) Or API error log body instead of empty error
- Additional commits viewable in [compare view](https://github.com/pusher/pusher-http-php/compare/v3.2.0...v3.3.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=pusher/pusher-php-server&package-manager=composer&previous-version=3.2.0&new-version=3.3.0)](https://dependabot.com/compatibility-score.html?dependency-name=pusher/pusher-php-server&package-manager=composer&previous-version=3.2.0&new-version=3.3.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-01-04 11:08:13 +01:00
dependabot[bot]
d73baa5a92 Bump mpociot/laravel-apidoc-generator from 3.2.0 to 3.3.0 (#888)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.2.0 to 3.3.0.
<details>
<summary>Release notes</summary>

*Sourced from [mpociot/laravel-apidoc-generator's releases](https://github.com/mpociot/laravel-apidoc-generator/releases).*

> ## 3.3.0
> [Changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md#330---wednesday-2-january-2019)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [mpociot/laravel-apidoc-generator's changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md).*

> ## [3.3.0] - Wednesday, 2 January 2019
> ### Added
> - Ability to replace json key values in response file (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/434)
> - Support for custom transfer serializers (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/441)
</details>
<details>
<summary>Commits</summary>

- [`20fdf98`](20fdf9858a) Update CHANGELOG.md
- [`fb599ae`](fb599aed3e) Merge pull request [#442](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/442) from mpociot/analysis-qgrGeG
- [`236e877`](236e87793a) Apply fixes from StyleCI
- [`0085188`](0085188cb0) Merge pull request [#441](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/441) from lloricode/custom-serializer
- [`bf78d31`](bf78d314a5) Update apidoc.php
- [`7dd614f`](7dd614ff6c) 👍 example
- [`a655125`](a655125a8e) 📚 more detail
- [`1e1c795`](1e1c795f4c) Merge branch 'master' of https://github.com/mpociot/laravel-apidoc-generator ...
- [`4c87b21`](4c87b21d29) Update CONTRIBUTING.md
- [`1e02195`](1e021953d8) Merge pull request [#440](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/440) from lloricode/patch-1
- Additional commits viewable in [compare view](https://github.com/mpociot/laravel-apidoc-generator/compare/3.2.0...3.3.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.2.0&new-version=3.3.0)](https://dependabot.com/compatibility-score.html?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.2.0&new-version=3.3.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2019-01-03 11:05:01 +01:00
Phan An
ff891f8eee
Apply fixes from StyleCI (#887) 2019-01-01 12:53:34 +01:00
Javier López
7ba295efad Non interactive koel:init (#886)
* Use ADMIN_* variables if available to create the admin account

* Add APP_MEDIA_PATH for media directory

* Use the standard --no-interaction flag to koel:init

* Undo variable aligment and code formatting

* Prefer early return over else, add new line before return statements

* Some fixes
2019-01-01 12:53:20 +01:00
Phan An
e554448a3e Sync with core 2018-12-23 21:15:13 +01:00
Phan An
55c8d66e10 Update node-sass I hate node-sass 2018-12-23 21:13:53 +01:00
dependabot[bot]
a3aec09e8b Bump barryvdh/laravel-ide-helper from 2.5.2 to 2.5.3 (#883)
Bumps [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper) from 2.5.2 to 2.5.3.
<details>
<summary>Commits</summary>

- [`3d7f124`](3d7f124089) prevent loading views if `view` class not in container ([#691](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/691))
- [`32df0a3`](32df0a3bc6) Fix: Parametrized relationships prevent generation of metadata ([#719](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/719))
- [`2f8283a`](2f8283a746) Optionally write missing Laravel Model DocBlock ([#700](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/700))
- [`2a63b31`](2a63b31475) Merge pull request [#730](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/730) from apollopy/master
- [`494d159`](494d1593c8) Merge pull request [#732](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/732) from HikaruYasuda/fix/duplicateMacroMethods
- [`e513fb3`](e513fb34dc) Merge pull request [#743](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/743) from JeppeKnockaert/fix-travis-timeout
- [`5db8275`](5db82752ef) Merge pull request [#742](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/742) from JeppeKnockaert/update-reflection-docblock-to-v2-0-6
- [`1f555bc`](1f555bc194) bugfix - Increase composer update timeout in Travis
- [`b0ce532`](b0ce5325de) Update ReflectionDocBlock to v2.0.6
- [`aeae59d`](aeae59d0af) Merge pull request [#740](https://github-redirect.dependabot.com/barryvdh/laravel-ide-helper/issues/740) from JeppeKnockaert/fix-cannot-redeclare-method
- Additional commits viewable in [compare view](https://github.com/barryvdh/laravel-ide-helper/compare/v2.5.2...v2.5.3)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=barryvdh/laravel-ide-helper&package-manager=composer&previous-version=2.5.2&new-version=2.5.3)](https://dependabot.com/compatibility-score.html?dependency-name=barryvdh/laravel-ide-helper&package-manager=composer&previous-version=2.5.2&new-version=2.5.3)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-20 17:29:21 +01:00
dependabot[bot]
3460f2991c Bump mpociot/laravel-apidoc-generator from 3.1.1 to 3.2.0 (#881)
Bumps [mpociot/laravel-apidoc-generator](https://github.com/mpociot/laravel-apidoc-generator) from 3.1.1 to 3.2.0.
<details>
<summary>Release notes</summary>

*Sourced from [mpociot/laravel-apidoc-generator's releases](https://github.com/mpociot/laravel-apidoc-generator/releases).*

> ## 3.2.0
> [Changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md#320---wednesday-12-december-2018)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [mpociot/laravel-apidoc-generator's changelog](https://github.com/mpociot/laravel-apidoc-generator/blob/master/CHANGELOG.md).*

> ## [3.2.0] - Wednesday, 12 December 2018
> ### Changed
> - API groups are now sorted "naturally" (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/428)
> 
> ### Fixed
> - Partial resource controllers are now properly supported (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/429)
> - PUT request body now formatted as `urlencoded` in Postman collection (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/418)
> - `[**responseFile**](https://github.com/responseFile)` strategy now properly renders responses (https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/pull/427)
</details>
<details>
<summary>Commits</summary>

- [`d13b0e1`](d13b0e1687) Update CHANGELOG.md
- [`56c5412`](56c5412340) Update CONTRIBUTING.md
- [`503fb66`](503fb6605e) Merge pull request [#431](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/431) from mpociot/analysis-8wPwG9
- [`2e66407`](2e66407a3b) Apply fixes from StyleCI
- [`02d1942`](02d1942298) Merge pull request [#428](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/428) from phanan-forks/feat/natsort
- [`8ca2719`](8ca27199ab) Update GenerateDocumentationTest.php
- [`6850789`](68507895e0) Merge branch 'master' into feat/natsort
- [`c2ef79d`](c2ef79d990) Merge pull request [#429](https://github-redirect.dependabot.com/mpociot/laravel-apidoc-generator/issues/429) from phanan-forks/fix/partial-ctrl
- [`6096b95`](6096b95b2a) Trigger build
- [`966c8eb`](966c8eb365) Trigger build
- Additional commits viewable in [compare view](https://github.com/mpociot/laravel-apidoc-generator/compare/3.1.1...3.2.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.1.1&new-version=3.2.0)](https://dependabot.com/compatibility-score.html?dependency-name=mpociot/laravel-apidoc-generator&package-manager=composer&previous-version=3.1.1&new-version=3.2.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-19 16:15:16 +01:00
dependabot[bot]
1b98f4fbdc Bump phpunit/phpunit from 7.5.0 to 7.5.1 (#876)
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 7.5.0 to 7.5.1.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/7.5.0...7.5.1)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-12-17 13:14:29 +01:00
dependabot[bot]
0a62f3a459 Bump doctrine/dbal from 2.9.0 to 2.9.1 (#878)
Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 2.9.0 to 2.9.1.
<details>
<summary>Release notes</summary>

*Sourced from [doctrine/dbal's releases](https://github.com/doctrine/dbal/releases).*

> # Release v2.9.1
> 
> [![Build Status](https://travis-ci.org/doctrine/dbal.svg?branch=v2.9.1)](https://travis-ci.org/doctrine/dbal)
> 
> This release fixes regressions introduced in v2.9.0 and issues specific to the SQL Anywhere platform.
> 
> - Total issues resolved: **11**
> 
> **MySQL, Schema Introspection:**
> 
> - [3393: Fixed parsing MySQL create table flags (options without a value)](https://github-redirect.dependabot.com/doctrine/dbal/pull/3393) thanks to [**morozov**](https://github.com/morozov) and [**AdrianSherwood**](https://github.com/AdrianSherwood)
> - [3398: BC Break in 2.9.0 for MySQL Tables containing partitions](https://github-redirect.dependabot.com/doctrine/dbal/issues/3398) thanks to [**bcremer**](https://github.com/bcremer)
> 
> **SQL Anywhere:**
> 
> - [3375: &#91;SQL Anywhere&#93; Fix bound parameter references in PHP 7](https://github-redirect.dependabot.com/doctrine/dbal/pull/3375) thanks to [**deeky666**](https://github.com/deeky666)
> - [3378: &#91;SQL Anywhere&#93; Fix query limit values &quot;0&quot; and &quot;null&quot;](https://github-redirect.dependabot.com/doctrine/dbal/pull/3378) thanks to [**deeky666**](https://github.com/deeky666)
> - [3385: &#91;SQL Anywhere&#93; Fix fetching empty values via fetchAll()](https://github-redirect.dependabot.com/doctrine/dbal/pull/3385) thanks to [**deeky666**](https://github.com/deeky666)
> - [3386: &#91;SQL Anywhere&#93; Fix view schema introspection test](https://github-redirect.dependabot.com/doctrine/dbal/pull/3386) thanks to [**deeky666**](https://github.com/deeky666)
> 
> **Schema Comparison:**
> 
> - [3382: Reverted strict comparison back to loose because of a new regression](https://github-redirect.dependabot.com/doctrine/dbal/pull/3382) thanks to [**morozov**](https://github.com/morozov) and [**Majkl578**](https://github.com/Majkl578)
> 
> **Connections:**
> 
> - [3305: Fix Fetch mode query in MasterSlaveConnection](https://github-redirect.dependabot.com/doctrine/dbal/pull/3305) thanks to [**BradCrumb**](https://github.com/BradCrumb)
> 
> **Cache:**
> 
> - [3381: ResultCacheStatement lost its cache capability on fetchAll method](https://github-redirect.dependabot.com/doctrine/dbal/pull/3381) thanks to [**roger-codina**](https://github.com/roger-codina)
> 
> **Documentation:**
> 
> - [3392: fixed annotations of parameter $columns in Table](https://github-redirect.dependabot.com/doctrine/dbal/pull/3392) thanks to [**LukasVitek**](https://github.com/LukasVitek) and [**ricardofiorani**](https://github.com/ricardofiorani)
</details>
<details>
<summary>Commits</summary>

- [`ec74d6e`](ec74d6e300) Release v2.9.1
- [`f3711a7`](f3711a7506) Merge pull request [#3404](https://github-redirect.dependabot.com/doctrine/dbal/issues/3404) from greg0ire/update_chat_link
- [`7ce636b`](7ce636bf49) Merge branch 'bpo/2.9/#3392' into 2.9
- [`b84603b`](b84603b991) Fixed annotation and name of parameter $columnsNames in Table
- [`5d4f933`](5d4f9335a2) Merge branch 'bpo/2.9/#3393' into 2.9
- [`b18f63c`](b18f63ccbf) Fixed parsing MySQL create table flags (options without a value)
- [`62dacc0`](62dacc09e9) Merge branch 'bpo/2.9/#3381' into 2.9
- [`79e369e`](79e369e886) ResultCacheStatement lost its cache capability on fetchAll method
- [`125fb5e`](125fb5e71a) Merge branch 'bpo/2.9/#3305' into 2.9
- [`f6dd134`](f6dd134417) Fix Fetch mode query in MasterSlaveConnection
- Additional commits viewable in [compare view](https://github.com/doctrine/dbal/compare/v2.9.0...v2.9.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=doctrine/dbal&package-manager=composer&previous-version=2.9.0&new-version=2.9.1)](https://dependabot.com/compatibility-score.html?dependency-name=doctrine/dbal&package-manager=composer&previous-version=2.9.0&new-version=2.9.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-17 13:14:20 +01:00
dependabot[bot]
545295c8ac Bump jackiedo/dotenv-editor from 1.0.7 to 1.0.8 (#874)
Bumps [jackiedo/dotenv-editor](https://github.com/JackieDo/Laravel-Dotenv-Editor) from 1.0.7 to 1.0.8.
<details>
<summary>Release notes</summary>

*Sourced from [jackiedo/dotenv-editor's releases](https://github.com/JackieDo/Laravel-Dotenv-Editor/releases).*

> ## 1.0.8
> - [Fixed] The method handle() does not exists. (Pull request [#19](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/19), [#23](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/23). Issue [#18](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/18))
> - [Fixed] The value "0" isn't displayed in output array. (Pull request [#20](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/20))
> - [Fixed] The error "Undefined property" in the class DotenvWriter. (Pull request [#22](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/22))
</details>
<details>
<summary>Commits</summary>

- [`2ceebe3`](2ceebe3a1c) Merge pull request [#25](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/25) from JackieDo/1.0
- [`646094f`](646094fd44) Fixed some bugs
- [`18d0df7`](18d0df7e1f) Merge pull request [#16](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/16) from JackieDo/1.0
- [`a02a089`](a02a0898b9) Merge pull request [#15](https://github-redirect.dependabot.com/JackieDo/Laravel-Dotenv-Editor/issues/15) from JackieDo/1.0
- See full diff in [compare view](https://github.com/JackieDo/Laravel-Dotenv-Editor/compare/1.0.7...1.0.8)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=jackiedo/dotenv-editor&package-manager=composer&previous-version=1.0.7&new-version=1.0.8)](https://dependabot.com/compatibility-score.html?dependency-name=jackiedo/dotenv-editor&package-manager=composer&previous-version=1.0.7&new-version=1.0.8)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-12 00:41:37 +01:00
dependabot[bot]
a0486f6083 Bump phpunit/phpunit from 7.4.5 to 7.5.0 (#873)
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 7.4.5 to 7.5.0.
<details>
<summary>Changelog</summary>

*Sourced from [phpunit/phpunit's changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md).*

> ## [7.5.0] - 2018-12-07
> 
> ### Added
> 
> * Implemented [#3340](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3340): Added `assertEqualsCanonicalizing()`, `assertEqualsIgnoringCase()`, `assertEqualsWithDelta()`, `assertNotEqualsCanonicalizing()`, `assertNotEqualsIgnoringCase()`, and `assertNotEqualsWithDelta()` as alternatives to using `assertEquals()` and `assertNotEquals()` with the `$delta`, `$canonicalize`, or `$ignoreCase` parameters
> * Implemented [#3368](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3368): Added `assertIsArray()`, `assertIsBool()`, `assertIsFloat()`, `assertIsInt()`, `assertIsNumeric()`, `assertIsObject()`, `assertIsResource()`, `assertIsString()`, `assertIsScalar()`, `assertIsCallable()`, `assertIsIterable()`, `assertIsNotArray()`, `assertIsNotBool()`, `assertIsNotFloat()`, `assertIsNotInt()`, `assertIsNotNumeric()`, `assertIsNotObject()`, `assertIsNotResource()`, `assertIsNotString()`, `assertIsNotScalar()`, `assertIsNotCallable()`, `assertIsNotIterable()` as alternatives to `assertInternalType()` and `assertNotInternalType()`
> * Implemented [#3391](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3391): Added a `TestHook` that fires after each test, regardless of result
> * Implemented [#3417](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3417): Refinements related to test suite sorting and TestDox result printer
> * Implemented [#3422](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3422): Added `assertStringContainsString()`, `assertStringContainsStringIgnoringCase()`, `assertStringNotContainsString()`, and `assertStringNotContainsStringIgnoringCase()`
> 
> ### Deprecated
> 
> * The methods `assertInternalType()` and `assertNotInternalType()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed.
> * The methods `assertAttributeContains()`, `assertAttributeNotContains()`, `assertAttributeContainsOnly()`, `assertAttributeNotContainsOnly()`, `assertAttributeCount()`, `assertAttributeNotCount()`, `assertAttributeEquals()`, `assertAttributeNotEquals()`, `assertAttributeEmpty()`, `assertAttributeNotEmpty()`, `assertAttributeGreaterThan()`, `assertAttributeGreaterThanOrEqual()`, `assertAttributeLessThan()`, `assertAttributeLessThanOrEqual()`, `assertAttributeSame()`, `assertAttributeNotSame()`, `assertAttributeInstanceOf()`, `assertAttributeNotInstanceOf()`, `assertAttributeInternalType()`, `assertAttributeNotInternalType()`, `attributeEqualTo()`, `readAttribute()`, `getStaticAttribute()`, and `getObjectAttribute()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed.
> * The optional parameters `$delta`, `$maxDepth`, `$canonicalize`, and `$ignoreCase` of `assertEquals()` and `assertNotEquals()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed.
> * The annotations `[**expectedException**](https://github.com/expectedException)`, `[**expectedExceptionCode**](https://github.com/expectedExceptionCode)`, `[**expectedExceptionMessage**](https://github.com/expectedExceptionMessage)`, and `[**expectedExceptionMessageRegExp**](https://github.com/expectedExceptionMessageRegExp)` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these annotations will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these annotations will be removed.
> * Using the methods `assertContains()` and `assertNotContains()` on `string` haystacks is now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods on `string` haystacks will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods cannot be used on on `string` haystacks anymore.
> * The optional parameters `$ignoreCase`, `$checkForObjectIdentity`, and `$checkForNonObjectIdentity` of `assertContains()` and `assertNotContains()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed.
> 
> ### Fixed
> 
> * Implemented [#3428](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3428): `TestSuite` setup failures are not logged correctly
> * Implemented [#3429](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3429): Inefficient loop in `getHookMethods()` 
> * Implemented [#3437](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3437): JUnit logger skips PHPT tests
> 
> [7.5.0]: https://github.com/sebastianbergmann/phpunit/compare/7.4.5...7.5.0
</details>
<details>
<summary>Commits</summary>

- [`5207231`](520723129e) Prepare release
- [`49ff35c`](49ff35ccef) CodeCov is a harsh mistress
- [`092d742`](092d742a13) Do not throw needless fatals when logging non-standard TestCase
- [`ebcf10b`](ebcf10b3a9) There will not be another PHPUnit 7.4 release
- [`c8d9d95`](c8d9d95713) Update ChangeLog
- [`51a7c5b`](51a7c5b146) Fix Windows paths in tests
- [`ecb4c1c`](ecb4c1c28f) Add tests for including PHPT results in TeamCity and JUnit loggers
- [`5805fd7`](5805fd7980) CS/WS fixes
- [`94487b2`](94487b2440) Add test coverage for newly added information methods
- [`e4edc0b`](e4edc0b092) CS/WS fixes
- Additional commits viewable in [compare view](https://github.com/sebastianbergmann/phpunit/compare/7.4.5...7.5.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.4.5&new-version=7.5.0)](https://dependabot.com/compatibility-score.html?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.4.5&new-version=7.5.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-10 14:26:27 +01:00
Phan An
ab4f2210d1
API doc (#872)
* Add the API documentation

* Apply fixes from StyleCI (#871)
2018-12-09 22:24:43 +01:00
dependabot[bot]
1c86e69a35 Bump symfony/dom-crawler from 3.4.19 to 3.4.20 (#868)
Bumps [symfony/dom-crawler](https://github.com/symfony/dom-crawler) from 3.4.19 to 3.4.20.
<details>
<summary>Commits</summary>

- See full diff in [compare view](https://github.com/symfony/dom-crawler/compare/v3.4.19...v3.4.20)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=symfony/dom-crawler&package-manager=composer&previous-version=3.4.19&new-version=3.4.20)](https://dependabot.com/compatibility-score.html?dependency-name=symfony/dom-crawler&package-manager=composer&previous-version=3.4.19&new-version=3.4.20)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-08 15:30:02 +01:00
dependabot[bot]
ce3259eda0 Bump phpstan/phpstan from 0.10.5 to 0.10.6 (#866)
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 0.10.5 to 0.10.6.
<details>
<summary>Release notes</summary>

*Sourced from [phpstan/phpstan's releases](https://github.com/phpstan/phpstan/releases).*

> ## 0.10.6
> * **Full support for PHP 7.3**:
>   * Support for `is_countable()` (7888e6edf63065220e656055ff1f7a3c54e853a1) - https://wiki.php.net/rfc/is-countable
>   * Support for `JSON_THROW_ON_ERROR` (d98c7ca1cb6255f4ea05982d18b8b4c03f989abf) - https://wiki.php.net/rfc/json_throw_on_error
>   * Support for `array_key_first()`/`array_key_last()` (f0252a5ab6b4a293fb25f218d9c64386f272280f) - https://wiki.php.net/rfc/array_key_first_last
> * Prevent using symfony/console with broken exit code handling ([#1548](https://github-redirect.dependabot.com/phpstan/phpstan/issues/1548)), thanks [**duncan3dc**](https://github.com/duncan3dc)!
</details>
<details>
<summary>Commits</summary>

- [`f0252a5`](f0252a5ab6) Support for array_key_first/array_key_last
- [`d98c7ca`](d98c7ca1cb) Support for JSON_THROW_ON_ERROR
- [`7888e6e`](7888e6edf6) Support for is_countable()
- [`81fc897`](81fc897adb) PHAR failure is no longer allowed
- [`daf7688`](daf768836c) Separate job for PHAR pushing
- [`72b301f`](72b301fb4c) Fixed build
- [`4635ee1`](4635ee105d) Update README.md
- [`e7574d6`](e7574d6b7a) Fixed commiting PHAR to shim repo
- [`99bb3a9`](99bb3a9d9f) Travis - build PHP 7.3
- [`d6c9a4e`](d6c9a4e5db) Travis CI - commit PHAR to phpstan-shim
- Additional commits viewable in [compare view](https://github.com/phpstan/phpstan/compare/0.10.5...0.10.6)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=phpstan/phpstan&package-manager=composer&previous-version=0.10.5&new-version=0.10.6)](https://dependabot.com/compatibility-score.html?dependency-name=phpstan/phpstan&package-manager=composer&previous-version=0.10.5&new-version=0.10.6)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-08 15:29:48 +01:00
dependabot[bot]
ecb3d50d87 Bump symfony/dom-crawler from 3.4.18 to 3.4.19 (#862)
Bumps [symfony/dom-crawler](https://github.com/symfony/dom-crawler) from 3.4.18 to 3.4.19.
- [Release notes](https://github.com/symfony/dom-crawler/releases)
- [Changelog](https://github.com/symfony/dom-crawler/blob/master/CHANGELOG.md)
- [Commits](https://github.com/symfony/dom-crawler/compare/v3.4.18...v3.4.19)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-12-05 11:05:21 +01:00
dependabot[bot]
0f350f4968 Bump aws/aws-sdk-php-laravel from 3.3.0 to 3.3.1 (#864)
Bumps [aws/aws-sdk-php-laravel](https://github.com/aws/aws-sdk-php-laravel) from 3.3.0 to 3.3.1.
<details>
<summary>Release notes</summary>

*Sourced from [aws/aws-sdk-php-laravel's releases](https://github.com/aws/aws-sdk-php-laravel/releases).*

> ## Version 3.3.1
> *  Modify service provider to use different config for publishing and default usage
</details>
<details>
<summary>Changelog</summary>

*Sourced from [aws/aws-sdk-php-laravel's changelog](https://github.com/aws/aws-sdk-php-laravel/blob/master/CHANGELOG.md).*

> ## 3.3.1 - 2018-12-3
> 
> *  Modify service provider to use different config for publishing and default usage
</details>
<details>
<summary>Commits</summary>

- [`33ea9fd`](33ea9fdd86) 3.3.1 release
- [`4449ed0`](4449ed0434) Modify service provider to use different config for publishing and default us...
- See full diff in [compare view](https://github.com/aws/aws-sdk-php-laravel/compare/3.3.0...3.3.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=aws/aws-sdk-php-laravel&package-manager=composer&previous-version=3.3.0&new-version=3.3.1)](https://dependabot.com/compatibility-score.html?dependency-name=aws/aws-sdk-php-laravel&package-manager=composer&previous-version=3.3.0&new-version=3.3.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-05 11:05:11 +01:00
Jack Polk
5581284033 Updated app.php default encryption key (#865)
For the sake of testing, it is easier to have the key fit the required 32 character limit for AES-256-CBC. If the default 'SomeRandomString' placeholder is used, an invalid key length error is returned.
2018-12-05 11:04:43 +01:00
dependabot[bot]
28c1534472 Bump doctrine/dbal from 2.8.0 to 2.9.0 (#867)
Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 2.8.0 to 2.9.0.
<details>
<summary>Release notes</summary>

*Sourced from [doctrine/dbal's releases](https://github.com/doctrine/dbal/releases).*

> # Release v2.9.0
> 
> [![Build Status](https://travis-ci.org/doctrine/dbal.svg?branch=v2.9.0)](https://travis-ci.org/doctrine/dbal)
> 
> This is a minor release of Doctrine DBAL that aggregates over 40 fixes and improvements developed by 18 contributors over the last 5 months.
> 
> This release includes all changes of the 2.8.x series, as well as feature additions and improvements that couldn't land in patch releases.
> 
> ## Backwards Compatibility Breaks
> 
> This doesn't contain any intentional Backwards Compatibility (BC) breaks.
> 
> ## Deprecations
> 
> * The usage of `NULL` to specify the absence of an offset in `LIMIT`ed queries is deprecated. Use `0` instead.
> * It's not recommended to rely on the default length specified by implementations of `Type`. These values are not used by the library and will be removed.
> * It's not recommended to rely on the string representation of `Type` objects.
> * Regular-expression based asset filters are deprecated in favor of callback-based as more extensible.
> * Calling `Statement::fetchColumn()` with an invalid column index is deprecated.
> * The `dbal:import` CLI command is deprecated. Please use other database client applications for import.
> 
> Please see details in the [UPGRADE.md](UPGRADE.md) documentation.
> 
> ## New Features
> 
> * Added support for MariaDB 10.3.
> * Added support for Windows authentication for SQL Server.
> * Added support for column length in index definitions on MySQL.
> 
> ## Improvements and Fixes
> 
> * Implemented handling BLOB objects represented as streams in the MySQL (`mysqli`) driver.
> * Implemented handling BLOB objects represented as streams in the IBM DB2 driver.
> * DBAL is now continuously tested with the PDO driver for Oracle.
> * Implemented handling of URLs in master-slave and pooling-shard connection configuration.
> * The codebase is now fully compatible with the Doctrine Coding Standard v5.0.
> 
> Total issues resolved: **45**
> 
> **Deprecations:**
> 
> - [3244: Deprecated dbal:import CLI command](https://github-redirect.dependabot.com/doctrine/dbal/pull/3244) thanks to [**morozov**](https://github.com/morozov)
> - [3253: Deprecated usage of the NULL offset in LIMITed queries](https://github-redirect.dependabot.com/doctrine/dbal/pull/3253) thanks to [**morozov**](https://github.com/morozov)
> - [3256: Deprecate Doctrine\DBAL\Types\Type::getDefaultLength()](https://github-redirect.dependabot.com/doctrine/dbal/pull/3256) thanks to [**Majkl578**](https://github.com/Majkl578)
> - [3258: Deprecate Doctrine\DBAL\Types\Type::&#95;&#95;toString()](https://github-redirect.dependabot.com/doctrine/dbal/pull/3258) thanks to [**Majkl578**](https://github.com/Majkl578)
> - [3316: Deprecated regex-based asset filters](https://github-redirect.dependabot.com/doctrine/dbal/pull/3316) thanks to [**morozov**](https://github.com/morozov)
> - [3359: Removed DataAccessTest::testFetchColumnNonExistingIndex() since it covers a bug in PDO](https://github-redirect.dependabot.com/doctrine/dbal/pull/3359) thanks to [**morozov**](https://github.com/morozov)
> 
> **New Features:**
> 
></table> ... (truncated)
</details>
<details>
<summary>Commits</summary>

- [`21fdabe`](21fdabe2fc) Release v2.9.0
- [`8c0bf79`](8c0bf7983c) Merge pull request [#3372](https://github-redirect.dependabot.com/doctrine/dbal/issues/3372) from BenMorel/travis_mysql8
- [`f7b4177`](f7b4177854) Travis CI tests on MySQL 8.0
- [`2179996`](2179996d6a) Merge pull request [#3339](https://github-redirect.dependabot.com/doctrine/dbal/issues/3339) from morozov/issues/3294
- [`b1afc40`](b1afc40d1d) Fixed a potential cause of ORA-12519: TNS:no appropriate service handler found
- [`2e4588b`](2e4588be6d) Disabled and reworked some tests
- [`b3b0d31`](b3b0d3111b) Added PDO_OCI configuration for ContinuousPHP
- [`0b0015e`](0b0015e613) Merge pull request [#3359](https://github-redirect.dependabot.com/doctrine/dbal/issues/3359) from morozov/issues/3358
- [`e7cc1bd`](e7cc1bdada) Removed DataAccessTest::testFetchColumnNonExistingIndex() since it covers a b...
- [`1a2b9aa`](1a2b9aaca8) Merge pull request [#3370](https://github-redirect.dependabot.com/doctrine/dbal/issues/3370) from morozov/readme-remove-27
- Additional commits viewable in [compare view](https://github.com/doctrine/dbal/compare/v2.8.0...v2.9.0)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=doctrine/dbal&package-manager=composer&previous-version=2.8.0&new-version=2.9.0)](https://dependabot.com/compatibility-score.html?dependency-name=doctrine/dbal&package-manager=composer&previous-version=2.8.0&new-version=2.9.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-05 11:03:36 +01:00
dependabot[bot]
693149a74b Bump phpunit/phpunit from 7.4.3 to 7.4.5 (#863)
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 7.4.3 to 7.4.5.
<details>
<summary>Changelog</summary>

*Sourced from [phpunit/phpunit's changelog](https://github.com/sebastianbergmann/phpunit/blob/7.4.5/ChangeLog-7.4.md).*

> ## [7.4.5] - 2018-12-03
> 
> * Fixed [#3410](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3410): Parent directory of `cacheResultFile` is not created when it does not exist
> * Fixed [#3418](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3418): Conflicting placeholder replacement and argument exporting inconsistencies in `[**testdox**](https://github.com/testdox)`
> 
> ## [7.4.4] - 2018-11-14
> 
> ### Fixed
> 
> * Fixed [#3379](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3379): Dependent test of skipped test has status `-1`
> * Fixed [#3394](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3394): Process Isolation does not work when PHPUnit is used as PHAR
> * Fixed [#3398](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3398): Bug when replacing placeholders in `[**testdox**](https://github.com/testdox)` annotation using an associative array
> * Fixed [#3401](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3401): Test re-ordering edge cases
> * Fixed [#3402](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3402): Listening to the tests in reverse revealed evil hidden messages
</details>
<details>
<summary>Commits</summary>

- [`61d34e8`](61d34e8dd6) Prepare release
- [`3d90af0`](3d90af037d) Update ChangeLog
- [`a14dcf7`](a14dcf7f87) Remove useless variable
- [`e58045a`](e58045aefe) Fix CS violations
- [`73a4961`](73a4961a78) - Fix conflicting placeholder replacement
- [`c471247`](c471247d85) Revert "Revert "Cleanup""
- [`6a137ad`](6a137ad134) Add tests
- [`bac4fa5`](bac4fa5953) Add tests
- [`3c27bda`](3c27bdad03) Update after deletion of PHPUnit 7.3 branch
- [`c24fa1a`](c24fa1a0db) Fix
- Additional commits viewable in [compare view](https://github.com/sebastianbergmann/phpunit/compare/7.4.3...7.4.5)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.4.3&new-version=7.4.5)](https://dependabot.com/compatibility-score.html?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=7.4.3&new-version=7.4.5)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
2018-12-03 11:05:51 +01:00
Phan An
b520c45858 Sync with core 2018-11-25 22:34:29 +01:00
Phan An
eda8af2ba6 Sync with core 2018-11-25 22:22:34 +01:00
Phan An
d58b791c37 Allow smart playlist creation 2018-11-25 22:21:46 +01:00
Phan An
e7ad687f8a Add env preset 2018-11-19 10:00:11 +01:00
Phan An
9b0ff7d079 Sync with core 2018-11-19 09:55:26 +01:00
Phan An
6122a25554
Apply fixes from StyleCI (#856) 2018-11-18 22:50:37 +01:00