From 7b9d63ce8d6074132506fb6ec556c702f5970b77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 Dec 2019 09:49:02 +0100 Subject: [PATCH] Fix: Bring back support for PHP 7.1 --- .github/settings.yml | 5 +- .github/stale.yml | 10 - .github/workflows/continuous-integration.yml | 3 +- .php_cs | 2 +- .php_cs.fixture | 2 +- CHANGELOG.md | 15 +- composer.json | 16 +- composer.lock | 1115 +++++++----------- phpstan.neon | 5 +- 9 files changed, 458 insertions(+), 715 deletions(-) delete mode 100644 .github/stale.yml diff --git a/.github/settings.yml b/.github/settings.yml index 5c140998..bcb0cd72 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -10,9 +10,12 @@ branches: required_approving_review_count: 1 required_status_checks: contexts: - - "Coding Standards (7.2)" + - "Coding Standards (7.1)" - "Dependency Analysis (7.4)" - "Static Code Analysis (7.4)" + - "Tests (7.1, lowest)" + - "Tests (7.1, locked)" + - "Tests (7.1, highest)" - "Tests (7.2, lowest)" - "Tests (7.2, locked)" - "Tests (7.2, highest)" diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index 8eb151c2..00000000 --- a/.github/stale.yml +++ /dev/null @@ -1,10 +0,0 @@ -daysUntilStale: 60 - -daysUntilClose: 7 - -staleLabel: stale - -markComment: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 46440c5f..7e968803 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: php-version: - - 7.2 + - 7.1 steps: - name: "Checkout" @@ -146,6 +146,7 @@ jobs: strategy: matrix: php-version: + - 7.1 - 7.2 - 7.3 - 7.4 diff --git a/.php_cs b/.php_cs index f4d79893..4eb1ca33 100644 --- a/.php_cs +++ b/.php_cs @@ -11,7 +11,7 @@ declare(strict_types=1); * @see https://github.com/ergebnis/test-util */ -use Ergebnis\PhpCsFixer\Config; +use Localheinz\PhpCsFixer\Config; $header = <<<'EOF' Copyright (c) 2017 Andreas Möller diff --git a/.php_cs.fixture b/.php_cs.fixture index f64fa459..c642d04a 100644 --- a/.php_cs.fixture +++ b/.php_cs.fixture @@ -11,7 +11,7 @@ declare(strict_types=1); * @see https://github.com/ergebnis/test-util */ -use Ergebnis\PhpCsFixer\Config; +use Localheinz\PhpCsFixer\Config; $config = Config\Factory::fromRuleSet(new Config\RuleSet\Php71(''), [ 'final_class' => false, diff --git a/CHANGELOG.md b/CHANGELOG.md index a1fb1862..b79fe8bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`0.9.0...master`][0.9.0...master]. +For a full diff see [`0.9.1...master`][0.9.1...master]. + +## [`0.9.1`][0.9.1] + +For a full diff see [`0.9.0...0.9.1`][0.9.0...0.9.1]. + +### Fixed + +* Brought back support for PHP 7.1 ([#155]), by [@localheinz] ## [`0.9.0`][0.9.0] @@ -59,16 +67,19 @@ For a full diff see [`0.7.0...0.8.0`][0.7.0...0.8.0]. [0.8.0]: https://github.com/ergebnis/test-util/releases/tag/0.8.0 [0.9.0]: https://github.com/ergebnis/test-util/releases/tag/0.9.0 +[0.9.1]: https://github.com/ergebnis/test-util/releases/tag/0.9.1 [0.7.0...0.8.0]: https://github.com/ergebnis/test-util/compare/0.7.0...0.8.0 [0.8.0...0.9.0]: https://github.com/ergebnis/test-util/compare/0.8.0...0.9.0 -[0.9.0...master]: https://github.com/ergebnis/test-util/compare/0.9.0...master +[0.9.0...0.9.1]: https://github.com/ergebnis/test-util/compare/0.9.0...0.9.1 +[0.9.1...master]: https://github.com/ergebnis/test-util/compare/0.9.1...master [#118]: https://github.com/ergebnis/test-util/pull/118 [#119]: https://github.com/ergebnis/test-util/pull/119 [#120]: https://github.com/ergebnis/test-util/pull/120 [#122]: https://github.com/ergebnis/test-util/pull/122 [#147]: https://github.com/ergebnis/test-util/pull/147 +[#155]: https://github.com/ergebnis/test-util/pull/155 [@ergebnis]: https://github.com/ergebnis [@localheinz]: https://github.com/localheinz diff --git a/composer.json b/composer.json index 8fc11410..6f9356ba 100644 --- a/composer.json +++ b/composer.json @@ -17,20 +17,20 @@ } ], "require": { - "php": "^7.2", - "ergebnis/classy": "~0.5.0", + "php": "^7.1", + "ergebnis/classy": "~0.5.1", "fzaninotto/faker": "^1.9.0" }, "require-dev": { - "ergebnis/composer-normalize": "^2.0.0", - "ergebnis/php-cs-fixer-config": "~1.1.0", - "ergebnis/phpstan-rules": "~0.14.0", - "infection/infection": "~0.15.0", + "ergebnis/composer-normalize": "^1.3.1", + "ergebnis/phpstan-rules": "~0.13.0", + "infection/infection": "~0.13.6", + "localheinz/php-cs-fixer-config": "~1.24.0", "phpstan/extension-installer": "^1.0.3", - "phpstan/phpstan": "~0.11.6", + "phpstan/phpstan": "~0.11.19", "phpstan/phpstan-phpunit": "~0.11.2", "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^7.5.16 || ^8.0.0" + "phpunit/phpunit": "^7.5.18" }, "config": { "preferred-install": "dist", diff --git a/composer.lock b/composer.lock index a966203d..df671050 100644 --- a/composer.lock +++ b/composer.lock @@ -4,37 +4,38 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "788604b1fbf6a7f89762c1cab38df0e9", + "content-hash": "f6022b91585a4b274b0bf5f2935029fd", "packages": [ { "name": "ergebnis/classy", - "version": "0.5.0", + "version": "0.5.2", "source": { "type": "git", "url": "https://github.com/ergebnis/classy.git", - "reference": "7ba774c203fd1e9b6ab5aad846b500a3d9121fd9" + "reference": "e8e1b6f17c82389eb1d232acd6aac290286b3259" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/classy/zipball/7ba774c203fd1e9b6ab5aad846b500a3d9121fd9", - "reference": "7ba774c203fd1e9b6ab5aad846b500a3d9121fd9", + "url": "https://api.github.com/repos/ergebnis/classy/zipball/e8e1b6f17c82389eb1d232acd6aac290286b3259", + "reference": "e8e1b6f17c82389eb1d232acd6aac290286b3259", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": "^7.2" + "php": "^7.1" }, "require-dev": { - "ergebnis/php-cs-fixer-config": "~1.1.0", - "infection/infection": "~0.15.0", - "localheinz/composer-normalize": "^1.3.1", - "localheinz/phpstan-rules": "~0.13.0", - "localheinz/test-util": "0.2.2", + "ergebnis/composer-normalize": "^1.3.1", + "ergebnis/phpstan-rules": "~0.13.0", + "ergebnis/test-util": "~0.7.0", + "infection/infection": "~0.13.6", + "localheinz/php-cs-fixer-config": "~1.24.0", "phpbench/phpbench": "~0.16.10", + "phpstan/extension-installer": "^1.0.3", "phpstan/phpstan": "~0.11.19", "phpstan/phpstan-deprecation-rules": "~0.11.2", "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.4.3", + "phpunit/phpunit": "^7.5.18", "zendframework/zend-file": "^2.8.3" }, "type": "library", @@ -55,20 +56,20 @@ ], "description": "Provides a way to collect classy constructs from source or a directory.", "homepage": "https://github.com/ergebnis/classy", - "time": "2019-12-05T22:45:51+00:00" + "time": "2019-12-19T08:25:00+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.9.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "27a216cbe72327b2d6369fab721a5843be71e57d" + "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/27a216cbe72327b2d6369fab721a5843be71e57d", - "reference": "27a216cbe72327b2d6369fab721a5843be71e57d", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", + "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", "shasum": "" }, "require": { @@ -81,7 +82,9 @@ }, "type": "library", "extra": { - "branch-alias": [] + "branch-alias": { + "dev-master": "1.9-dev" + } }, "autoload": { "psr-4": { @@ -103,22 +106,22 @@ "faker", "fixtures" ], - "time": "2019-11-14T13:13:06+00:00" + "time": "2019-12-12T13:22:17+00:00" } ], "packages-dev": [ { "name": "composer/ca-bundle", - "version": "1.2.4", + "version": "1.2.5", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527" + "reference": "62e8fc2dc550e5d6d8c9360c7721662670f58149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/10bb96592168a0f8e8f6dcde3532d9fa50b0b527", - "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/62e8fc2dc550e5d6d8c9360c7721662670f58149", + "reference": "62e8fc2dc550e5d6d8c9360c7721662670f58149", "shasum": "" }, "require": { @@ -129,7 +132,7 @@ "require-dev": { "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8", "psr/log": "^1.0", - "symfony/process": "^2.5 || ^3.0 || ^4.0" + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" }, "type": "library", "extra": { @@ -161,7 +164,7 @@ "ssl", "tls" ], - "time": "2019-08-30T08:44:50+00:00" + "time": "2019-12-11T14:44:42+00:00" }, { "name": "composer/semver", @@ -339,16 +342,16 @@ }, { "name": "doctrine/instantiator", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "a2c590166b2133a4633738648b6b064edae0814a" + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a", - "reference": "a2c590166b2133a4633738648b6b064edae0814a", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", "shasum": "" }, "require": { @@ -391,34 +394,32 @@ "constructor", "instantiate" ], - "time": "2019-03-17T17:37:11+00:00" + "time": "2019-10-21T16:45:58+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.0", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6" + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", "shasum": "" }, "require": { - "php": "^7.2" + "php": ">=5.3.2" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" + "phpunit/phpunit": "^4.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -431,14 +432,14 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -453,107 +454,51 @@ "parser", "php" ], - "time": "2019-10-30T14:39:59+00:00" - }, - { - "name": "ergebnis/composer-json-normalizer", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/ergebnis/composer-json-normalizer.git", - "reference": "e23221df44973cd394fedc8cb70c19caaa6b027d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ergebnis/composer-json-normalizer/zipball/e23221df44973cd394fedc8cb70c19caaa6b027d", - "reference": "e23221df44973cd394fedc8cb70c19caaa6b027d", - "shasum": "" - }, - "require": { - "ergebnis/json-normalizer": "~0.10.0", - "ext-json": "*", - "justinrainbow/json-schema": "^4.0.0 || ^5.0.0", - "php": "^7.2" - }, - "require-dev": { - "ergebnis/php-cs-fixer-config": "~1.1.1", - "ergebnis/phpstan-rules": "~0.14.1", - "ergebnis/test-util": "~0.9.0", - "infection/infection": "~0.13.6", - "jangregor/phpstan-prophecy": "~0.5.0", - "phpstan/extension-installer": "^1.0.3", - "phpstan/phpstan": "~0.11.19", - "phpstan/phpstan-deprecation-rules": "~0.11.2", - "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Ergebnis\\Composer\\Json\\Normalizer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Möller", - "email": "am@localheinz.com" - } - ], - "description": "Provides normalizers for normalizing composer.json.", - "homepage": "https://github.com/ergebnis/composer-json-normalizer", - "keywords": [ - "composer", - "json", - "normalizer" - ], - "time": "2019-12-15T14:16:33+00:00" + "time": "2019-06-08T11:03:04+00:00" }, { "name": "ergebnis/composer-normalize", - "version": "2.0.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/ergebnis/composer-normalize.git", - "reference": "91c456e7a2f3c6e8245895cf748187056914b012" + "reference": "22e20fd5456efe3c5e9a40c1e653fd3c3ff2ec7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/91c456e7a2f3c6e8245895cf748187056914b012", - "reference": "91c456e7a2f3c6e8245895cf748187056914b012", + "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/22e20fd5456efe3c5e9a40c1e653fd3c3ff2ec7d", + "reference": "22e20fd5456efe3c5e9a40c1e653fd3c3ff2ec7d", "shasum": "" }, "require": { "composer-plugin-api": "^1.1.0", - "ergebnis/composer-json-normalizer": "^2.0.0", - "ergebnis/json-normalizer": "~0.10.0", - "ergebnis/json-printer": "^3.0.1", - "localheinz/diff": "^1.0.1", - "php": "^7.2" + "localheinz/composer-json-normalizer": "^1.0.2", + "localheinz/diff": "^1.0.0", + "localheinz/json-normalizer": "~0.9.0", + "php": "^7.1" }, "require-dev": { "composer/composer": "^1.7.0", - "ergebnis/php-cs-fixer-config": "~1.1.1", - "ergebnis/phpstan-rules": "~0.14.1", - "ergebnis/test-util": "~0.9.0", - "jangregor/phpstan-prophecy": "~0.5.0", - "phpstan/extension-installer": "^1.0.3", - "phpstan/phpstan": "~0.11.19", + "jangregor/phpstan-prophecy": "~0.4.2", + "localheinz/php-cs-fixer-config": "~1.23.0", + "localheinz/phpstan-rules": "~0.10.0", + "localheinz/test-util": "~0.7.0", + "phpstan/phpstan": "~0.11.15", "phpstan/phpstan-deprecation-rules": "~0.11.2", "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0", - "symfony/filesystem": "^4.4.1" + "phpunit/phpunit": "^7.5.15", + "symfony/filesystem": "^4.3.4" }, "type": "composer-plugin", "extra": { - "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin" + "branch-alias": { + "dev-master": "2.0-dev" + }, + "class": "Localheinz\\Composer\\Normalize\\NormalizePlugin" }, "autoload": { "psr-4": { - "Ergebnis\\Composer\\Normalize\\": "src/" + "Localheinz\\Composer\\Normalize\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -567,212 +512,42 @@ } ], "description": "Provides a composer plugin for normalizing composer.json.", - "homepage": "https://github.com/ergebnis/composer-normalize", + "homepage": "https://github.com/localheinz/composer-normalize", "keywords": [ "composer", "normalize", "normalizer", "plugin" ], - "time": "2019-12-17T08:12:55+00:00" - }, - { - "name": "ergebnis/json-normalizer", - "version": "0.10.0", - "source": { - "type": "git", - "url": "https://github.com/ergebnis/json-normalizer.git", - "reference": "a489b84d68f0e8a8c882a849550312a6e0c9b7f0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/a489b84d68f0e8a8c882a849550312a6e0c9b7f0", - "reference": "a489b84d68f0e8a8c882a849550312a6e0c9b7f0", - "shasum": "" - }, - "require": { - "ergebnis/json-printer": "^3.0.1", - "ext-json": "*", - "justinrainbow/json-schema": "^4.0.0 || ^5.0.0", - "php": "^7.2" - }, - "require-dev": { - "ergebnis/php-cs-fixer-config": "~1.1.1", - "ergebnis/phpstan-rules": "~0.14.1", - "ergebnis/test-util": "~0.9.0", - "infection/infection": "~0.13.6", - "jangregor/phpstan-prophecy": "~0.4.2", - "phpbench/phpbench": "~0.16.10", - "phpstan/extension-installer": "^1.0.3", - "phpstan/phpstan": "~0.11.19", - "phpstan/phpstan-deprecation-rules": "~0.11.2", - "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Ergebnis\\Json\\Normalizer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Möller", - "email": "am@localheinz.com" - } - ], - "description": "Provides normalizers for normalizing JSON documents.", - "homepage": "https://github.com/ergebnis/json-normalizer", - "keywords": [ - "json", - "normalizer" - ], - "time": "2019-12-15T11:48:50+00:00" - }, - { - "name": "ergebnis/json-printer", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://github.com/ergebnis/json-printer.git", - "reference": "182fe2f4223e40ba4f1ca2ccdb35e2dd8c1e0878" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/182fe2f4223e40ba4f1ca2ccdb35e2dd8c1e0878", - "reference": "182fe2f4223e40ba4f1ca2ccdb35e2dd8c1e0878", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-mbstring": "*", - "php": "^7.2" - }, - "require-dev": { - "ergebnis/php-cs-fixer-config": "~1.1.0", - "ergebnis/phpstan-rules": "~0.14.0", - "ergebnis/test-util": "~0.9.0", - "infection/infection": "~0.13.6", - "phpbench/phpbench": "~0.16.10", - "phpstan/extension-installer": "^1.0.3", - "phpstan/phpstan": "~0.11.19", - "phpstan/phpstan-deprecation-rules": "~0.11.2", - "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Ergebnis\\Json\\Printer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Möller", - "email": "am@localheinz.com" - } - ], - "description": "Provides a JSON printer, allowing for flexible indentation.", - "homepage": "https://github.com/ergebnis/json-printer", - "keywords": [ - "formatter", - "json", - "printer" - ], - "time": "2019-12-15T09:53:05+00:00" - }, - { - "name": "ergebnis/php-cs-fixer-config", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/ergebnis/php-cs-fixer-config.git", - "reference": "3ddee84cc6fb35e391317af2cb1ae2ccd735c707" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ergebnis/php-cs-fixer-config/zipball/3ddee84cc6fb35e391317af2cb1ae2ccd735c707", - "reference": "3ddee84cc6fb35e391317af2cb1ae2ccd735c707", - "shasum": "" - }, - "require": { - "friendsofphp/php-cs-fixer": "~2.16.0", - "php": "^7.2" - }, - "replace": { - "localheinz/php-cs-fixer-config": "*" - }, - "require-dev": { - "infection/infection": "~0.14.2", - "jangregor/phpstan-prophecy": "~0.4.2", - "localheinz/composer-normalize": "^1.3.1", - "localheinz/phpstan-rules": "~0.13.0", - "localheinz/test-util": "~0.8.0", - "phpstan/phpstan": "~0.11.19", - "phpstan/phpstan-deprecation-rules": "~0.11.2", - "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.4.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Ergebnis\\PhpCsFixer\\Config\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Möller", - "email": "am@localheinz.com" - } - ], - "description": "Provides a configuration factory and multiple rule sets for friendsofphp/php-cs-fixer.", - "homepage": "https://github.com/ergebnis/php-cs-fixer-config", - "time": "2019-11-26T13:06:06+00:00" + "time": "2019-09-07T10:12:23+00:00" }, { "name": "ergebnis/phpstan-rules", - "version": "0.14.0", + "version": "0.13.0", "source": { "type": "git", "url": "https://github.com/ergebnis/phpstan-rules.git", - "reference": "217772cd009ec8a10f44c827137c4c4c85126258" + "reference": "e05ea16b61e48436a9ebb98e432de56b2dcf2034" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/217772cd009ec8a10f44c827137c4c4c85126258", - "reference": "217772cd009ec8a10f44c827137c4c4c85126258", + "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/e05ea16b61e48436a9ebb98e432de56b2dcf2034", + "reference": "e05ea16b61e48436a9ebb98e432de56b2dcf2034", "shasum": "" }, "require": { - "ext-mbstring": "*", "nikic/php-parser": "^4.2.3", - "php": "^7.2", - "phpstan/phpstan": "~0.11.15 || ~0.12.0" - }, - "replace": { - "localheinz/phpstan-rules": "*" + "php": "^7.1", + "phpstan/phpstan": "~0.11.15" }, "require-dev": { - "ergebnis/php-cs-fixer-config": "~1.1.0", - "ergebnis/test-util": "~0.9.0", "infection/infection": "~0.13.6", "localheinz/composer-normalize": "^1.3.1", - "nette/di": "^3.0.1", + "localheinz/php-cs-fixer-config": "~1.23.0", + "localheinz/test-util": "~0.7.0", "phpstan/phpstan-deprecation-rules": "~0.11.2", "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0", + "phpunit/phpunit": "^7.5.16", "psr/container": "^1.0.0", "zendframework/zend-servicemanager": "^2.0.0" }, @@ -786,7 +561,7 @@ }, "autoload": { "psr-4": { - "Ergebnis\\PHPStan\\Rules\\": "src/" + "Localheinz\\PHPStan\\Rules\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -800,13 +575,13 @@ } ], "description": "Provides additional rules for phpstan/phpstan.", - "homepage": "https://github.com/ergebnis/phpstan-rules", + "homepage": "https://github.com/localheinz/phpstan-rules", "keywords": [ "PHPStan", "phpstan-extreme-rules", "phpstan-rules" ], - "time": "2019-12-09T22:36:56+00:00" + "time": "2019-10-15T09:23:25+00:00" }, { "name": "friendsofphp/php-cs-fixer", @@ -899,46 +674,44 @@ }, { "name": "infection/infection", - "version": "0.15.0", + "version": "0.13.6", "source": { "type": "git", "url": "https://github.com/infection/infection.git", - "reference": "1d79de53cbc1dfa902e1ea4afba6c3f0214d5224" + "reference": "09b4d371d203f7f22dcf1741a3f6c657404fb61e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/infection/infection/zipball/1d79de53cbc1dfa902e1ea4afba6c3f0214d5224", - "reference": "1d79de53cbc1dfa902e1ea4afba6c3f0214d5224", + "url": "https://api.github.com/repos/infection/infection/zipball/09b4d371d203f7f22dcf1741a3f6c657404fb61e", + "reference": "09b4d371d203f7f22dcf1741a3f6c657404fb61e", "shasum": "" }, "require": { - "composer/xdebug-handler": "^1.3.3", + "composer/xdebug-handler": "^1.3", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "justinrainbow/json-schema": "^5.2", - "nikic/php-parser": "^4.2.2", + "nikic/php-parser": "^4.2.1", "ocramius/package-versions": "^1.2", - "php": "^7.2.9", + "padraic/phar-updater": "^1.0.4", + "php": "^7.1.3", "pimple/pimple": "^3.2", - "sebastian/diff": "^3.0.2", - "seld/jsonlint": "^1.7", - "symfony/console": "^3.4.29 || ^4.0 || ^5.0", - "symfony/filesystem": "^3.4.29 || ^4.0 || ^5.0", - "symfony/finder": "^3.4.29 || ^4.0 || ^5.0", - "symfony/process": "^3.4.29 || ^4.0 || ^5.0", - "symfony/yaml": "^3.4.29 || ^4.0 || ^5.0", - "thecodingmachine/safe": "^0.1.16", - "webmozart/assert": "^1.3", - "webmozart/path-util": "^2.3" + "sebastian/diff": "^1.4 || ^2.0 || ^3.0", + "symfony/console": "^3.4 || ^4.0", + "symfony/filesystem": "^3.4 || ^4.0", + "symfony/finder": "^3.4 || ^4.0", + "symfony/process": "^3.4 || ^4.0", + "symfony/yaml": "^3.4 || ^4.0", + "webmozart/assert": "^1.3" }, "conflict": { - "symfony/console": "=4.1.5" + "symfony/console": "=3.4.16 || =4.1.5", + "symfony/process": "3.4.2" }, "require-dev": { - "helmich/phpunit-json-assert": "^3.0", - "phpunit/phpunit": "^8.2.5 <8.4", - "symfony/phpunit-bridge": "^4.3.4 || ^5.0" + "helmich/phpunit-json-assert": "^2.1 || ^3.0", + "phpunit/phpunit": "^7.5" }, "bin": [ "bin/infection" @@ -976,11 +749,6 @@ "name": "Alexey Kopytko", "email": "alexey@kopytko.com", "homepage": "https://www.alexeykopytko.com" - }, - { - "name": "Andreas Möller", - "email": "am@localheinz.com", - "homepage": "https://localheinz.com" } ], "description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.", @@ -992,7 +760,7 @@ "testing", "unit testing" ], - "time": "2019-11-29T06:37:53+00:00" + "time": "2019-08-29T19:22:44+00:00" }, { "name": "jean85/pretty-package-versions", @@ -1111,6 +879,60 @@ ], "time": "2019-09-25T14:49:45+00:00" }, + { + "name": "localheinz/composer-json-normalizer", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/localheinz/composer-json-normalizer.git", + "reference": "bc9f574026fe86828df6ab32a4c8a3118cbd9ac2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/localheinz/composer-json-normalizer/zipball/bc9f574026fe86828df6ab32a4c8a3118cbd9ac2", + "reference": "bc9f574026fe86828df6ab32a4c8a3118cbd9ac2", + "shasum": "" + }, + "require": { + "localheinz/json-normalizer": "~0.9.0", + "php": "^7.1" + }, + "require-dev": { + "infection/infection": "~0.11.4", + "localheinz/php-cs-fixer-config": "~1.19.0", + "localheinz/phpstan-rules": "~0.5.0", + "localheinz/test-util": "~0.7.0", + "phpstan/phpstan": "~0.10.7", + "phpstan/phpstan-deprecation-rules": "~0.10.2", + "phpstan/phpstan-strict-rules": "~0.10.1", + "phpunit/phpunit": "^7.5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Localheinz\\Composer\\Json\\Normalizer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "Provides normalizers for normalizing composer.json.", + "homepage": "https://github.com/localheinz/composer-json-normalizer", + "keywords": [ + "composer", + "json", + "normalizer" + ], + "abandoned": "ergebnis/composer-json-normalizer", + "time": "2019-01-09T14:43:16+00:00" + }, { "name": "localheinz/diff", "version": "1.0.1", @@ -1162,18 +984,164 @@ ], "time": "2019-12-17T07:42:37+00:00" }, + { + "name": "localheinz/json-normalizer", + "version": "0.9.0", + "source": { + "type": "git", + "url": "https://github.com/localheinz/json-normalizer.git", + "reference": "28eeda6f1f0daa3c9c28ad0651d95478fe1a5059" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/localheinz/json-normalizer/zipball/28eeda6f1f0daa3c9c28ad0651d95478fe1a5059", + "reference": "28eeda6f1f0daa3c9c28ad0651d95478fe1a5059", + "shasum": "" + }, + "require": { + "ext-json": "*", + "justinrainbow/json-schema": "^4.0.0 || ^5.0.0", + "localheinz/json-printer": "^2.0.1", + "php": "^7.1" + }, + "require-dev": { + "infection/infection": "~0.10.5", + "localheinz/php-cs-fixer-config": "~1.15.0", + "localheinz/test-util": "~0.7.0", + "phpbench/phpbench": "~0.14.0", + "phpstan/phpstan": "~0.10.3", + "phpunit/phpunit": "^7.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Localheinz\\Json\\Normalizer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "Provides normalizers for normalizing JSON documents.", + "homepage": "https://github.com/localheinz/json-normalizer", + "keywords": [ + "json", + "normalizer" + ], + "abandoned": "ergebnis/json-normalizer", + "time": "2018-10-07T17:36:39+00:00" + }, + { + "name": "localheinz/json-printer", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/localheinz/json-printer.git", + "reference": "86f942599c8f9f922de4e21c2b9b6564c895cb0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/localheinz/json-printer/zipball/86f942599c8f9f922de4e21c2b9b6564c895cb0c", + "reference": "86f942599c8f9f922de4e21c2b9b6564c895cb0c", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "infection/infection": "~0.8.1", + "localheinz/php-cs-fixer-config": "~1.14.0", + "localheinz/test-util": "0.6.1", + "phpbench/phpbench": "~0.14.0", + "phpunit/phpunit": "^6.5.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Localheinz\\Json\\Printer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "Provides a JSON printer, allowing for flexible indentation.", + "homepage": "https://github.com/localheinz/json-printer", + "keywords": [ + "formatter", + "json", + "printer" + ], + "abandoned": "ergebnis/json-printer", + "time": "2018-08-11T23:54:50+00:00" + }, + { + "name": "localheinz/php-cs-fixer-config", + "version": "1.24.0", + "source": { + "type": "git", + "url": "https://github.com/localheinz/php-cs-fixer-config.git", + "reference": "6c43e1bfecf6079dd8bc5891fe8bfa6f303c87c1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/localheinz/php-cs-fixer-config/zipball/6c43e1bfecf6079dd8bc5891fe8bfa6f303c87c1", + "reference": "6c43e1bfecf6079dd8bc5891fe8bfa6f303c87c1", + "shasum": "" + }, + "require": { + "friendsofphp/php-cs-fixer": "~2.16.0", + "php": "^7.1" + }, + "require-dev": { + "localheinz/composer-normalize": "^1.3.1", + "phpunit/phpunit": "^7.5.17" + }, + "type": "library", + "autoload": { + "psr-4": { + "Localheinz\\PhpCsFixer\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "Provides a configuration factory and multiple rule sets for friendsofphp/php-cs-fixer.", + "homepage": "https://github.com/localheinz/php-cs-fixer-config", + "abandoned": "ergebnis/php-cs-fixer-config", + "time": "2019-11-03T18:42:30+00:00" + }, { "name": "myclabs/deep-copy", - "version": "1.9.3", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea" + "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/579bb7356d91f9456ccd505f24ca8b667966a0a7", + "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7", "shasum": "" }, "require": { @@ -1208,7 +1176,7 @@ "object", "object graph" ], - "time": "2019-08-09T12:45:53+00:00" + "time": "2019-12-15T19:12:40+00:00" }, { "name": "nette/bootstrap", @@ -1484,16 +1452,16 @@ }, { "name": "nette/php-generator", - "version": "v3.2.3", + "version": "v3.3.1", "source": { "type": "git", "url": "https://github.com/nette/php-generator.git", - "reference": "aea6e81437bb238e5f0e5b5ce06337433908e63b" + "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/php-generator/zipball/aea6e81437bb238e5f0e5b5ce06337433908e63b", - "reference": "aea6e81437bb238e5f0e5b5ce06337433908e63b", + "url": "https://api.github.com/repos/nette/php-generator/zipball/4240fd7adf499138c07b814ef9b9a6df9f6d7187", + "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187", "shasum": "" }, "require": { @@ -1507,7 +1475,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -1539,7 +1507,7 @@ "php", "scaffolding" ], - "time": "2019-07-05T13:01:56+00:00" + "time": "2019-11-22T11:12:11+00:00" }, { "name": "nette/robot-loader", @@ -1605,16 +1573,16 @@ }, { "name": "nette/schema", - "version": "v1.0.0", + "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d" + "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d", - "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d", + "url": "https://api.github.com/repos/nette/schema/zipball/337117df1dade22e2ba1fdc4a4b832c1e9b06b76", + "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76", "shasum": "" }, "require": { @@ -1658,7 +1626,7 @@ "config", "nette" ], - "time": "2019-04-03T15:53:25+00:00" + "time": "2019-10-31T20:52:19+00:00" }, { "name": "nette/utils", @@ -1791,16 +1759,16 @@ }, { "name": "ocramius/package-versions", - "version": "1.4.0", + "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/Ocramius/PackageVersions.git", - "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb" + "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", - "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", + "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", + "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", "shasum": "" }, "require": { @@ -1812,7 +1780,7 @@ "doctrine/coding-standard": "^5.0.1", "ext-zip": "*", "infection/infection": "^0.7.1", - "phpunit/phpunit": "^7.0.0" + "phpunit/phpunit": "^7.5.17" }, "type": "composer-plugin", "extra": { @@ -1837,7 +1805,7 @@ } ], "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "time": "2019-02-21T12:16:21+00:00" + "time": "2019-11-15T16:17:10+00:00" }, { "name": "padraic/humbug_get_contents", @@ -2310,33 +2278,33 @@ }, { "name": "phpspec/prophecy", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203" + "reference": "d638ebbb58daba25a6a0dc7969e1358a0e3c6682" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d638ebbb58daba25a6a0dc7969e1358a0e3c6682", + "reference": "d638ebbb58daba25a6a0dc7969e1358a0e3c6682", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/comparator": "^1.2.3|^2.0|^3.0", "sebastian/recursion-context": "^1.0|^2.0|^3.0" }, "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", + "phpspec/phpspec": "^2.5 || ^3.2", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev" + "dev-master": "1.10.x-dev" } }, "autoload": { @@ -2369,7 +2337,7 @@ "spy", "stub" ], - "time": "2019-10-03T11:07:50+00:00" + "time": "2019-12-17T16:54:23+00:00" }, { "name": "phpstan/extension-installer", @@ -2899,16 +2867,16 @@ }, { "name": "phpunit/phpunit", - "version": "7.5.16", + "version": "7.5.18", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661" + "reference": "fcf6c4bfafaadc07785528b06385cce88935474d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316afa6888d2562e04aeb67ea7f2017a0eb41661", - "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fcf6c4bfafaadc07785528b06385cce88935474d", + "reference": "fcf6c4bfafaadc07785528b06385cce88935474d", "shasum": "" }, "require": { @@ -2979,7 +2947,7 @@ "testing", "xunit" ], - "time": "2019-09-14T09:08:39+00:00" + "time": "2019-12-06T05:14:37+00:00" }, { "name": "pimple/pimple", @@ -3294,16 +3262,16 @@ }, { "name": "sebastian/environment", - "version": "4.2.2", + "version": "4.2.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404" + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404", - "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", "shasum": "" }, "require": { @@ -3343,7 +3311,7 @@ "environment", "hhvm" ], - "time": "2019-05-05T09:05:15+00:00" + "time": "2019-11-20T08:46:58+00:00" }, { "name": "sebastian/exporter", @@ -3693,67 +3661,18 @@ "homepage": "https://github.com/sebastianbergmann/version", "time": "2016-10-03T07:35:21+00:00" }, - { - "name": "seld/jsonlint", - "version": "1.7.2", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/e2e5d290e4d2a4f0eb449f510071392e00e10d19", - "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19", - "shasum": "" - }, - "require": { - "php": "^5.3 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" - }, - "bin": [ - "bin/jsonlint" - ], - "type": "library", - "autoload": { - "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], - "time": "2019-10-24T14:27:39+00:00" - }, { "name": "symfony/console", - "version": "v4.4.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "35d9077f495c6d184d9930f7a7ecbd1ad13c7ab8" + "reference": "f0aea3df20d15635b3cb9730ca5eea1c65b7f201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/35d9077f495c6d184d9930f7a7ecbd1ad13c7ab8", - "reference": "35d9077f495c6d184d9930f7a7ecbd1ad13c7ab8", + "url": "https://api.github.com/repos/symfony/console/zipball/f0aea3df20d15635b3cb9730ca5eea1c65b7f201", + "reference": "f0aea3df20d15635b3cb9730ca5eea1c65b7f201", "shasum": "" }, "require": { @@ -3816,20 +3735,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-11-13T07:39:40+00:00" + "time": "2019-12-01T10:06:17+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ab1c43e17fff802bef0a898f3bc088ac33b8e0e1" + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ab1c43e17fff802bef0a898f3bc088ac33b8e0e1", - "reference": "ab1c43e17fff802bef0a898f3bc088ac33b8e0e1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b3c3068a72623287550fe20b84a2b01dcba2686f", + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f", "shasum": "" }, "require": { @@ -3886,7 +3805,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-11-08T22:40:51+00:00" + "time": "2019-11-28T13:33:56+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -3948,16 +3867,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "d12b01cba60be77b583c9af660007211e3909854" + "reference": "40c2606131d56eff6f193b6e2ceb92414653b591" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/d12b01cba60be77b583c9af660007211e3909854", - "reference": "d12b01cba60be77b583c9af660007211e3909854", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/40c2606131d56eff6f193b6e2ceb92414653b591", + "reference": "40c2606131d56eff6f193b6e2ceb92414653b591", "shasum": "" }, "require": { @@ -3994,11 +3913,11 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2019-11-12T14:51:11+00:00" + "time": "2019-11-26T23:16:41+00:00" }, { "name": "symfony/finder", - "version": "v4.4.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", @@ -4047,25 +3966,25 @@ }, { "name": "symfony/options-resolver", - "version": "v5.0.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "1ad3d0ffc00cc1990e5c9c7bb6b81578ec3f5f68" + "reference": "2be23e63f33de16b49294ea6581f462932a77e2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/1ad3d0ffc00cc1990e5c9c7bb6b81578ec3f5f68", - "reference": "1ad3d0ffc00cc1990e5c9c7bb6b81578ec3f5f68", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2be23e63f33de16b49294ea6581f462932a77e2f", + "reference": "2be23e63f33de16b49294ea6581f462932a77e2f", "shasum": "" }, "require": { - "php": "^7.2.5" + "php": "^7.1.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -4097,20 +4016,20 @@ "configuration", "options" ], - "time": "2019-11-18T17:27:11+00:00" + "time": "2019-10-28T21:57:16+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", + "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", "shasum": "" }, "require": { @@ -4122,7 +4041,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4155,20 +4074,20 @@ "polyfill", "portable" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T13:56:44+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f", "shasum": "" }, "require": { @@ -4180,7 +4099,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4214,20 +4133,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T14:18:11+00:00" }, { "name": "symfony/polyfill-php70", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "54b4c428a0054e254223797d2713c31e08610831" + "reference": "af23c7bb26a73b850840823662dda371484926c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", - "reference": "54b4c428a0054e254223797d2713c31e08610831", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/af23c7bb26a73b850840823662dda371484926c4", + "reference": "af23c7bb26a73b850840823662dda371484926c4", "shasum": "" }, "require": { @@ -4237,7 +4156,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4273,20 +4192,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T13:56:44+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "04ce3335667451138df4307d6a9b61565560199e" + "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e", - "reference": "04ce3335667451138df4307d6a9b61565560199e", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/66fea50f6cb37a35eea048d75a7d99a45b586038", + "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038", "shasum": "" }, "require": { @@ -4295,7 +4214,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4328,20 +4247,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T13:56:44+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188" + "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188", - "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f", + "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f", "shasum": "" }, "require": { @@ -4350,7 +4269,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4386,20 +4305,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T16:25:15+00:00" }, { "name": "symfony/process", - "version": "v4.4.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "75ad33d9b6f25325ebc396d68ad86fd74bcfbb06" + "reference": "51c0135ef3f44c5803b33dc60e96bf4f77752726" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/75ad33d9b6f25325ebc396d68ad86fd74bcfbb06", - "reference": "75ad33d9b6f25325ebc396d68ad86fd74bcfbb06", + "url": "https://api.github.com/repos/symfony/process/zipball/51c0135ef3f44c5803b33dc60e96bf4f77752726", + "reference": "51c0135ef3f44c5803b33dc60e96bf4f77752726", "shasum": "" }, "require": { @@ -4435,24 +4354,24 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2019-10-28T20:30:34+00:00" + "time": "2019-11-28T13:33:56+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.0.0", + "version": "v1.1.8", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "9d99e1556417bf227a62e14856d630672bf10eaf" + "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/9d99e1556417bf227a62e14856d630672bf10eaf", - "reference": "9d99e1556417bf227a62e14856d630672bf10eaf", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf", + "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf", "shasum": "" }, "require": { - "php": "^7.2.9", + "php": "^7.1.3", "psr/container": "^1.0" }, "suggest": { @@ -4461,7 +4380,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "1.1-dev" } }, "autoload": { @@ -4493,30 +4412,30 @@ "interoperability", "standards" ], - "time": "2019-11-09T09:18:34+00:00" + "time": "2019-10-14T12:27:06+00:00" }, { "name": "symfony/stopwatch", - "version": "v5.0.0", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "d410282956706e0b08681a5527447a8e6b6f421e" + "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/d410282956706e0b08681a5527447a8e6b6f421e", - "reference": "d410282956706e0b08681a5527447a8e6b6f421e", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5745b514fc56ae1907c6b8ed74f94f90f64694e9", + "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9", "shasum": "" }, "require": { - "php": "^7.2.5", + "php": "^7.1.3", "symfony/service-contracts": "^1.0|^2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -4543,20 +4462,20 @@ ], "description": "Symfony Stopwatch Component", "homepage": "https://symfony.com", - "time": "2019-11-18T17:27:11+00:00" + "time": "2019-11-05T16:11:08+00:00" }, { "name": "symfony/yaml", - "version": "v4.3.5", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178" + "reference": "76de473358fe802578a415d5bb43c296cf09d211" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/41e16350a2a1c7383c4735aa2f9fce74cf3d1178", - "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178", + "url": "https://api.github.com/repos/symfony/yaml/zipball/76de473358fe802578a415d5bb43c296cf09d211", + "reference": "76de473358fe802578a415d5bb43c296cf09d211", "shasum": "" }, "require": { @@ -4567,7 +4486,7 @@ "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "~3.4|~4.0" + "symfony/console": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -4575,7 +4494,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -4602,139 +4521,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-09-11T15:41:19+00:00" - }, - { - "name": "thecodingmachine/safe", - "version": "v0.1.16", - "source": { - "type": "git", - "url": "https://github.com/thecodingmachine/safe.git", - "reference": "4e8f840f0a0a2ea167813c3994a7fc527c3c2182" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/4e8f840f0a0a2ea167813c3994a7fc527c3c2182", - "reference": "4e8f840f0a0a2ea167813c3994a7fc527c3c2182", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "require-dev": { - "phpstan/phpstan": "^0.10.3", - "squizlabs/php_codesniffer": "^3.2", - "thecodingmachine/phpstan-strict-rules": "^0.10.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.1-dev" - } - }, - "autoload": { - "psr-4": { - "Safe\\": [ - "lib/", - "generated/" - ] - }, - "files": [ - "generated/apache.php", - "generated/apc.php", - "generated/apcu.php", - "generated/array.php", - "generated/bzip2.php", - "generated/classobj.php", - "generated/com.php", - "generated/cubrid.php", - "generated/curl.php", - "generated/datetime.php", - "generated/dir.php", - "generated/eio.php", - "generated/errorfunc.php", - "generated/exec.php", - "generated/fileinfo.php", - "generated/filesystem.php", - "generated/filter.php", - "generated/fpm.php", - "generated/ftp.php", - "generated/funchand.php", - "generated/gmp.php", - "generated/gnupg.php", - "generated/hash.php", - "generated/ibase.php", - "generated/ibmDb2.php", - "generated/iconv.php", - "generated/image.php", - "generated/imap.php", - "generated/info.php", - "generated/ingres-ii.php", - "generated/inotify.php", - "generated/json.php", - "generated/ldap.php", - "generated/libevent.php", - "generated/libxml.php", - "generated/lzf.php", - "generated/mailparse.php", - "generated/mbstring.php", - "generated/misc.php", - "generated/msql.php", - "generated/mssql.php", - "generated/mysql.php", - "generated/mysqli.php", - "generated/mysqlndMs.php", - "generated/mysqlndQc.php", - "generated/network.php", - "generated/oci8.php", - "generated/opcache.php", - "generated/openssl.php", - "generated/outcontrol.php", - "generated/password.php", - "generated/pcntl.php", - "generated/pcre.php", - "generated/pdf.php", - "generated/pgsql.php", - "generated/posix.php", - "generated/ps.php", - "generated/pspell.php", - "generated/readline.php", - "generated/rrd.php", - "generated/sem.php", - "generated/session.php", - "generated/shmop.php", - "generated/simplexml.php", - "generated/sockets.php", - "generated/sodium.php", - "generated/solr.php", - "generated/spl.php", - "generated/sqlsrv.php", - "generated/ssdeep.php", - "generated/ssh2.php", - "generated/stats.php", - "generated/stream.php", - "generated/strings.php", - "generated/swoole.php", - "generated/uodbc.php", - "generated/uopz.php", - "generated/url.php", - "generated/var.php", - "generated/xdiff.php", - "generated/xml.php", - "generated/xmlrpc.php", - "generated/yaml.php", - "generated/yaz.php", - "generated/zip.php", - "generated/zlib.php", - "lib/special_cases.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHP core functions that throw exceptions instead of returning FALSE on error", - "time": "2019-06-25T08:45:33+00:00" + "time": "2019-11-12T14:51:11+00:00" }, { "name": "theseer/tokenizer", @@ -4778,31 +4565,29 @@ }, { "name": "webmozart/assert", - "version": "1.5.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4" + "reference": "573381c0a64f155a0d9a23f4b0c797194805b925" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4", - "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4", + "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925", + "reference": "573381c0a64f155a0d9a23f4b0c797194805b925", "shasum": "" }, "require": { "php": "^5.3.3 || ^7.0", "symfony/polyfill-ctype": "^1.8" }, + "conflict": { + "vimeo/psalm": "<3.6.0" + }, "require-dev": { "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3-dev" - } - }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -4824,53 +4609,7 @@ "check", "validate" ], - "time": "2019-08-24T08:43:50+00:00" - }, - { - "name": "webmozart/path-util", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.3-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\PathUtil\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", - "time": "2015-12-17T08:42:14+00:00" + "time": "2019-11-24T13:36:37+00:00" } ], "aliases": [], @@ -4879,7 +4618,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^7.2" + "php": "^7.1" }, "platform-dev": [] } diff --git a/phpstan.neon b/phpstan.neon index b6f72dcf..540062a0 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -2,9 +2,8 @@ includes: - phpstan-baseline.neon parameters: - ergebnis: - classesAllowedToBeExtended: - - InvalidArgumentException + classesAllowedToBeExtended: + - InvalidArgumentException excludes_analyse: - %currentWorkingDirectory%/test/Fixture/ inferPrivatePropertyTypeFromConstructor: true