diff --git a/.github/settings.yml b/.github/settings.yml index 5a6dd791..770d6ba8 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 dc39db84..6a32acbe 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" @@ -144,6 +144,7 @@ jobs: strategy: matrix: php-version: + - 7.1 - 7.2 - 7.3 - 7.4 @@ -210,7 +211,7 @@ jobs: - name: "Install PHP with extensions" uses: shivammathur/setup-php@v1 with: - coverage: pcov + coverage: xdebug extensions: "mbstring" php-version: ${{ matrix.php-version }} @@ -225,8 +226,11 @@ jobs: - name: "Install locked dependencies with composer" run: composer install --no-interaction --no-progress --no-suggest - - name: "Collect code coverage with pcov and phpunit/phpunit" - run: vendor/bin/phpunit --configuration=test/Integration/phpunit.xml --coverage-clover=build/logs/clover.xml + - name: "Dump Xdebug filter with phpunit/phpunit" + run: vendor/bin/phpunit --configuration=test/Integration/phpunit.xml --dump-xdebug-filter=.build/phpunit/xdebug-filter.php + + - name: "Collect code coverage with Xdebug and phpunit/phpunit" + run: vendor/bin/phpunit --configuration=test/Integration/phpunit.xml --coverage-clover=build/logs/clover.xml --prepend=.build/phpunit/xdebug-filter.php - name: "Send code coverage report to Codecov.io" env: @@ -250,7 +254,7 @@ jobs: - name: "Install PHP with extensions" uses: shivammathur/setup-php@v1 with: - coverage: pcov + coverage: xdebug extensions: "mbstring" php-version: ${{ matrix.php-version }} @@ -265,5 +269,5 @@ jobs: - name: "Install locked dependencies with composer" run: composer install --no-interaction --no-progress --no-suggest - - name: "Run mutation tests with pcov and infection/infection" + - name: "Run mutation tests with Xdebug and infection/infection" run: vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=93 --min-msi=83 diff --git a/CHANGELOG.md b/CHANGELOG.md index abff57b3..2ccda4cf 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.14.1...master`][0.14.1...master]. +For a full diff see [`0.14.2...master`][0.14.2...master]. + +## [`0.14.2`][0.14.2] + +For a full diff see [`0.14.1...0.14.2`][0.14.1...0.14.2]. + +### Fixed + +* Brought back support for PHP 7.1 ([#166]), by [@localheinz] ## [`0.14.1`][0.14.1] @@ -287,6 +295,7 @@ For a full diff see [`362c7ea...0.1.0`][362c7ea...0.1.0]. [0.13.0]: https://github.com/ergebnis/phpstan-rules/releases/tag/0.13.0 [0.14.0]: https://github.com/ergebnis/phpstan-rules/releases/tag/0.14.0 [0.14.1]: https://github.com/ergebnis/phpstan-rules/releases/tag/0.14.1 +[0.14.2]: https://github.com/ergebnis/phpstan-rules/releases/tag/0.14.2 [362c7ea...0.1.0]: https://github.com/ergebnis/phpstan-rules/compare/362c7ea...0.1.0 [0.1.0...0.2.0]: https://github.com/ergebnis/phpstan-rules/compare/0.1.0...0.2.0 @@ -308,7 +317,8 @@ For a full diff see [`362c7ea...0.1.0`][362c7ea...0.1.0]. [0.12.2...0.13.0]: https://github.com/ergebnis/phpstan-rules/compare/0.12.2...0.13.0 [0.13.0...0.14.0]: https://github.com/ergebnis/phpstan-rules/compare/0.13.0...0.14.0 [0.14.0...0.14.1]: https://github.com/ergebnis/phpstan-rules/compare/0.14.0...0.14.1 -[0.14.1...master]: https://github.com/ergebnis/phpstan-rules/compare/0.14.1...master +[0.14.1...0.14.2]: https://github.com/ergebnis/phpstan-rules/compare/0.14.1...0.14.2 +[0.14.2...master]: https://github.com/ergebnis/phpstan-rules/compare/0.14.2...master [#1]: https://github.com/ergebnis/phpstan-rules/pull/1 [#4]: https://github.com/ergebnis/phpstan-rules/pull/4 @@ -354,6 +364,7 @@ For a full diff see [`362c7ea...0.1.0`][362c7ea...0.1.0]. [#157]: https://github.com/ergebnis/phpstan-rules/pull/157 [#158]: https://github.com/ergebnis/phpstan-rules/pull/158 [#161]: https://github.com/ergebnis/phpstan-rules/pull/161 +[#166]: https://github.com/ergebnis/phpstan-rules/pull/166 [@ergebnis]: https://github.com/ergebnis [@localheinz]: https://github.com/localheinz diff --git a/composer.json b/composer.json index 722ed73f..681bc550 100644 --- a/composer.json +++ b/composer.json @@ -16,20 +16,20 @@ } ], "require": { - "php": "^7.2", + "php": "^7.1", "ext-mbstring": "*", "nikic/php-parser": "^4.2.3", "phpstan/phpstan": "~0.11.15 || ~0.12.0" }, "require-dev": { - "ergebnis/composer-normalize": "^2.0.1", - "ergebnis/php-cs-fixer-config": "~1.1.1", - "ergebnis/test-util": "~0.9.0", + "ergebnis/composer-normalize": "^1.3.1", + "ergebnis/php-cs-fixer-config": "~1.1.2", + "ergebnis/test-util": "~0.9.1", "infection/infection": "~0.13.6", "nette/di": "^3.0.1", "phpstan/phpstan-deprecation-rules": "~0.11.2", "phpstan/phpstan-strict-rules": "~0.11.1", - "phpunit/phpunit": "^8.5.0", + "phpunit/phpunit": "^7.5.18", "psr/container": "^1.0.0", "zendframework/zend-servicemanager": "^2.0.0" }, diff --git a/composer.lock b/composer.lock index c19f32b6..d153b30e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c595f98a6c8e8de7bb8c4f55186caeca", + "content-hash": "cebe05e16b2ddcc75e9c5533499faa34", "packages": [ { "name": "composer/xdebug-handler", @@ -103,16 +103,16 @@ }, { "name": "nette/bootstrap", - "version": "v3.0.0", + "version": "v3.0.1", "source": { "type": "git", "url": "https://github.com/nette/bootstrap.git", - "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3" + "reference": "b45a1e33b6a44beb307756522396551e5a9ff249" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/bootstrap/zipball/e1075af05c211915e03e0c86542f3ba5433df4a3", - "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3", + "url": "https://api.github.com/repos/nette/bootstrap/zipball/b45a1e33b6a44beb307756522396551e5a9ff249", + "reference": "b45a1e33b6a44beb307756522396551e5a9ff249", "shasum": "" }, "require": { @@ -120,6 +120,9 @@ "nette/utils": "^3.0", "php": ">=7.1" }, + "conflict": { + "tracy/tracy": "<2.6" + }, "require-dev": { "latte/latte": "^2.2", "nette/application": "^3.0", @@ -172,7 +175,7 @@ "configurator", "nette" ], - "time": "2019-03-26T12:59:07+00:00" + "time": "2019-09-30T08:19:38+00:00" }, { "name": "nette/di", @@ -249,16 +252,16 @@ }, { "name": "nette/finder", - "version": "v2.5.0", + "version": "v2.5.1", "source": { "type": "git", "url": "https://github.com/nette/finder.git", - "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2" + "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/finder/zipball/6be1b83ea68ac558aff189d640abe242e0306fe2", - "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2", + "url": "https://api.github.com/repos/nette/finder/zipball/14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", + "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", "shasum": "" }, "require": { @@ -299,7 +302,7 @@ "homepage": "https://nette.org/contributors" } ], - "description": "? Nette Finder: find files and directories with an intuitive API.", + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", "homepage": "https://nette.org", "keywords": [ "filesystem", @@ -307,7 +310,7 @@ "iterator", "nette" ], - "time": "2019-02-28T18:13:25+00:00" + "time": "2019-07-11T18:02:17+00:00" }, { "name": "nette/neon", @@ -372,16 +375,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": { @@ -395,7 +398,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -427,7 +430,7 @@ "php", "scaffolding" ], - "time": "2019-07-05T13:01:56+00:00" + "time": "2019-11-22T11:12:11+00:00" }, { "name": "nette/robot-loader", @@ -493,16 +496,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": { @@ -546,20 +549,20 @@ "config", "nette" ], - "time": "2019-04-03T15:53:25+00:00" + "time": "2019-10-31T20:52:19+00:00" }, { "name": "nette/utils", - "version": "v3.0.1", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "bd961f49b211997202bda1d0fbc410905be370d4" + "reference": "c133e18c922dcf3ad07673077d92d92cef25a148" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4", - "reference": "bd961f49b211997202bda1d0fbc410905be370d4", + "url": "https://api.github.com/repos/nette/utils/zipball/c133e18c922dcf3ad07673077d92d92cef25a148", + "reference": "c133e18c922dcf3ad07673077d92d92cef25a148", "shasum": "" }, "require": { @@ -575,6 +578,7 @@ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", "ext-json": "to use Nette\\Utils\\Json", "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", "ext-xml": "to use Strings::length() etc. when mbstring is not available" }, "type": "library", @@ -622,20 +626,20 @@ "utility", "validation" ], - "time": "2019-03-22T01:00:30+00:00" + "time": "2019-10-21T20:40:16+00:00" }, { "name": "nikic/php-parser", - "version": "v4.2.4", + "version": "v4.3.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4" + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4", - "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", "shasum": "" }, "require": { @@ -643,6 +647,7 @@ "php": ">=7.0" }, "require-dev": { + "ircmaxell/php-yacc": "0.0.5", "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ @@ -651,7 +656,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -673,20 +678,20 @@ "parser", "php" ], - "time": "2019-09-01T07:51:21+00:00" + "time": "2019-11-08T13:50:10+00:00" }, { "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": { @@ -698,7 +703,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": { @@ -723,7 +728,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": "phpstan/phpdoc-parser", @@ -1247,16 +1252,16 @@ "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": { @@ -1267,7 +1272,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": { @@ -1299,7 +1304,7 @@ "ssl", "tls" ], - "time": "2019-08-30T08:44:50+00:00" + "time": "2019-12-11T14:44:42+00:00" }, { "name": "composer/semver", @@ -1521,30 +1526,28 @@ }, { "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": { @@ -1557,14 +1560,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" @@ -1579,37 +1582,38 @@ "parser", "php" ], - "time": "2019-10-30T14:39:59+00:00" + "time": "2019-06-08T11:03:04+00:00" }, { "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", @@ -1630,107 +1634,51 @@ ], "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" - }, - { - "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-12-19T08:25:00+00:00" }, { "name": "ergebnis/composer-normalize", - "version": "2.0.1", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/ergebnis/composer-normalize.git", - "reference": "f7d97951e13c87085c0783e96c7b6db33d5db74e" + "reference": "22e20fd5456efe3c5e9a40c1e653fd3c3ff2ec7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/f7d97951e13c87085c0783e96c7b6db33d5db74e", - "reference": "f7d97951e13c87085c0783e96c7b6db33d5db74e", + "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/", @@ -1744,157 +1692,44 @@ } ], "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-18T17:41:40+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" + "time": "2019-09-07T10:12:23+00:00" }, { "name": "ergebnis/php-cs-fixer-config", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/ergebnis/php-cs-fixer-config.git", - "reference": "4f679ed3963300a6aa1a2d1a0eecf77bf311fd74" + "reference": "cd964747d45e41509161828863e896a682563970" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/php-cs-fixer-config/zipball/4f679ed3963300a6aa1a2d1a0eecf77bf311fd74", - "reference": "4f679ed3963300a6aa1a2d1a0eecf77bf311fd74", + "url": "https://api.github.com/repos/ergebnis/php-cs-fixer-config/zipball/cd964747d45e41509161828863e896a682563970", + "reference": "cd964747d45e41509161828863e896a682563970", "shasum": "" }, "require": { "friendsofphp/php-cs-fixer": "~2.16.0", - "php": "^7.2" + "php": "^7.1" }, "require-dev": { - "ergebnis/phpstan-rules": "~0.14.0", - "ergebnis/test-util": "~0.9.0", - "infection/infection": "~0.14.2", + "ergebnis/composer-normalize": "^1.3.1", + "ergebnis/phpstan-rules": "~0.13.0", + "ergebnis/test-util": "~0.9.1", + "infection/infection": "~0.13.6", "jangregor/phpstan-prophecy": "~0.4.2", - "localheinz/composer-normalize": "^1.3.1", "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" }, "type": "library", "autoload": { @@ -1914,36 +1749,37 @@ ], "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-12-15T10:01:03+00:00" + "time": "2019-12-19T09:40:03+00:00" }, { "name": "ergebnis/test-util", - "version": "0.9.0", + "version": "0.9.1", "source": { "type": "git", "url": "https://github.com/ergebnis/test-util.git", - "reference": "c3e52e5ccbe7d70fd902fd19cb3ab3747ee9c3e1" + "reference": "c6c40aa40fca705d8756816afb529adc9b083e42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/test-util/zipball/c3e52e5ccbe7d70fd902fd19cb3ab3747ee9c3e1", - "reference": "c3e52e5ccbe7d70fd902fd19cb3ab3747ee9c3e1", + "url": "https://api.github.com/repos/ergebnis/test-util/zipball/c6c40aa40fca705d8756816afb529adc9b083e42", + "reference": "c6c40aa40fca705d8756816afb529adc9b083e42", "shasum": "" }, "require": { - "ergebnis/classy": "~0.5.0", + "ergebnis/classy": "~0.5.1", "fzaninotto/faker": "^1.9.0", - "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", - "phpstan/phpstan": "~0.11.6", + "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.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" }, "type": "library", "autoload": { @@ -1969,7 +1805,7 @@ "phpunit", "test" ], - "time": "2019-12-07T08:19:59+00:00" + "time": "2019-12-19T09:08:28+00:00" }, { "name": "friendsofphp/php-cs-fixer", @@ -2062,16 +1898,16 @@ }, { "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": { @@ -2084,7 +1920,9 @@ }, "type": "library", "extra": { - "branch-alias": [] + "branch-alias": { + "dev-master": "1.9-dev" + } }, "autoload": { "psr-4": { @@ -2106,7 +1944,7 @@ "faker", "fixtures" ], - "time": "2019-11-14T13:13:06+00:00" + "time": "2019-12-12T13:22:17+00:00" }, { "name": "infection/infection", @@ -2264,6 +2102,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", @@ -2315,18 +2207,121 @@ ], "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": "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": { @@ -2361,7 +2356,7 @@ "object", "object graph" ], - "time": "2019-08-09T12:45:53+00:00" + "time": "2019-12-15T19:12:40+00:00" }, { "name": "padraic/humbug_get_contents", @@ -2834,33 +2829,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": { @@ -2893,7 +2888,7 @@ "spy", "stub" ], - "time": "2019-10-03T11:07:50+00:00" + "time": "2019-12-17T16:54:23+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -2999,40 +2994,40 @@ }, { "name": "phpunit/php-code-coverage", - "version": "7.0.10", + "version": "6.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf" + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf", - "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", "shasum": "" }, "require": { "ext-dom": "*", "ext-xmlwriter": "*", - "php": "^7.2", - "phpunit/php-file-iterator": "^2.0.2", + "php": "^7.1", + "phpunit/php-file-iterator": "^2.0", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.1.1", + "phpunit/php-token-stream": "^3.0", "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^4.2.2", + "sebastian/environment": "^3.1 || ^4.0", "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1.3" + "theseer/tokenizer": "^1.1" }, "require-dev": { - "phpunit/phpunit": "^8.2.2" + "phpunit/phpunit": "^7.0" }, "suggest": { - "ext-xdebug": "^2.7.2" + "ext-xdebug": "^2.6.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "7.0-dev" + "dev-master": "6.1-dev" } }, "autoload": { @@ -3058,7 +3053,7 @@ "testing", "xunit" ], - "time": "2019-11-20T13:55:58+00:00" + "time": "2018-10-31T16:06:48+00:00" }, { "name": "phpunit/php-file-iterator", @@ -3251,52 +3246,53 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.0", + "version": "7.5.18", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "3ee1c1fd6fc264480c25b6fb8285edefe1702dab" + "reference": "fcf6c4bfafaadc07785528b06385cce88935474d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3ee1c1fd6fc264480c25b6fb8285edefe1702dab", - "reference": "3ee1c1fd6fc264480c25b6fb8285edefe1702dab", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fcf6c4bfafaadc07785528b06385cce88935474d", + "reference": "fcf6c4bfafaadc07785528b06385cce88935474d", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.2.0", + "doctrine/instantiator": "^1.1", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", - "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.9.1", - "phar-io/manifest": "^1.0.3", - "phar-io/version": "^2.0.1", - "php": "^7.2", - "phpspec/prophecy": "^1.8.1", - "phpunit/php-code-coverage": "^7.0.7", - "phpunit/php-file-iterator": "^2.0.2", + "myclabs/deep-copy": "^1.7", + "phar-io/manifest": "^1.0.2", + "phar-io/version": "^2.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.7", + "phpunit/php-file-iterator": "^2.0.1", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1.2", - "sebastian/comparator": "^3.0.2", - "sebastian/diff": "^3.0.2", - "sebastian/environment": "^4.2.2", - "sebastian/exporter": "^3.1.1", - "sebastian/global-state": "^3.0.0", + "phpunit/php-timer": "^2.1", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^4.0", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0.1", - "sebastian/type": "^1.1.3", + "sebastian/resource-operations": "^2.0", "sebastian/version": "^2.0.1" }, + "conflict": { + "phpunit/phpunit-mock-objects": "*" + }, "require-dev": { "ext-pdo": "*" }, "suggest": { "ext-soap": "*", "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0.0" + "phpunit/php-invoker": "^2.0" }, "bin": [ "phpunit" @@ -3304,7 +3300,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "8.5-dev" + "dev-master": "7.5-dev" } }, "autoload": { @@ -3330,7 +3326,7 @@ "testing", "xunit" ], - "time": "2019-12-06T05:41:38+00:00" + "time": "2019-12-06T05:14:37+00:00" }, { "name": "pimple/pimple", @@ -3669,26 +3665,23 @@ }, { "name": "sebastian/global-state", - "version": "3.0.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4" + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", - "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", "shasum": "" }, "require": { - "php": "^7.2", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" + "php": "^7.0" }, "require-dev": { - "ext-dom": "*", - "phpunit/phpunit": "^8.0" + "phpunit/phpunit": "^6.0" }, "suggest": { "ext-uopz": "*" @@ -3696,7 +3689,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -3719,7 +3712,7 @@ "keywords": [ "global state" ], - "time": "2019-02-01T05:30:01+00:00" + "time": "2017-04-27T15:39:26+00:00" }, { "name": "sebastian/object-enumerator", @@ -3908,52 +3901,6 @@ "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "time": "2018-10-04T04:07:39+00:00" }, - { - "name": "sebastian/type", - "version": "1.1.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3", - "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3", - "shasum": "" - }, - "require": { - "php": "^7.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", - "time": "2019-07-02T08:10:15+00:00" - }, { "name": "sebastian/version", "version": "2.0.1", @@ -4502,16 +4449,16 @@ }, { "name": "symfony/yaml", - "version": "v4.3.4", + "version": "v4.4.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "5a0b7c32dc3ec56fd4abae8a4a71b0cf05013686" + "reference": "76de473358fe802578a415d5bb43c296cf09d211" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/5a0b7c32dc3ec56fd4abae8a4a71b0cf05013686", - "reference": "5a0b7c32dc3ec56fd4abae8a4a71b0cf05013686", + "url": "https://api.github.com/repos/symfony/yaml/zipball/76de473358fe802578a415d5bb43c296cf09d211", + "reference": "76de473358fe802578a415d5bb43c296cf09d211", "shasum": "" }, "require": { @@ -4522,7 +4469,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" @@ -4530,7 +4477,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -4557,7 +4504,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-08-20T14:27:59+00:00" + "time": "2019-11-12T14:51:11+00:00" }, { "name": "theseer/tokenizer", @@ -4706,7 +4653,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^7.2", + "php": "^7.1", "ext-mbstring": "*" }, "platform-dev": []