mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 14:03:41 +01:00
Updated Rector to commit 21fc218e086b066bf4824cdd2d987f971dd71983
21fc218e08
[Core] AbstractScopeAwareRector is ready to be used in custom rules (#2537)
This commit is contained in:
parent
1e1549f2d5
commit
76fe03af38
@ -51,7 +51,7 @@ final class MultiDirnameRector extends AbstractRector implements MinPhpVersionIn
|
||||
$lastFuncCallNode = $activeFuncCallNode;
|
||||
}
|
||||
// nothing to improve
|
||||
if ($this->shouldSkip()) {
|
||||
if ($this->nestingLevel < 2) {
|
||||
return null;
|
||||
}
|
||||
$node->args[0] = $lastFuncCallNode->args[0];
|
||||
@ -62,10 +62,6 @@ final class MultiDirnameRector extends AbstractRector implements MinPhpVersionIn
|
||||
{
|
||||
return PhpVersionFeature::DIRNAME_LEVELS;
|
||||
}
|
||||
private function shouldSkip() : bool
|
||||
{
|
||||
return $this->nestingLevel < 2;
|
||||
}
|
||||
private function matchNestedDirnameFuncCall(FuncCall $funcCall) : ?FuncCall
|
||||
{
|
||||
if (!$this->isName($funcCall, self::DIRNAME)) {
|
||||
|
@ -16,11 +16,11 @@ final class VersionResolver
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public const PACKAGE_VERSION = 'f4a9b50187a20ff3573a3f2b55859545a06157a6';
|
||||
public const PACKAGE_VERSION = '21fc218e086b066bf4824cdd2d987f971dd71983';
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE_DATE = '2022-06-20 09:03:46';
|
||||
public const RELEASE_DATE = '2022-06-20 15:00:08';
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
|
@ -8,10 +8,6 @@ use PHPStan\Analyser\Scope;
|
||||
use Rector\Core\Contract\Rector\ScopeAwarePhpRectorInterface;
|
||||
use Rector\Core\Exception\ShouldNotHappenException;
|
||||
use Rector\NodeTypeResolver\Node\AttributeKey;
|
||||
/**
|
||||
* @internal Currently in experimental testing for core Rector rules. So we can verify if this feature is useful or not.
|
||||
* Do not use outside in custom rules. Go for AbstractRector instead.
|
||||
*/
|
||||
abstract class AbstractScopeAwareRector extends \Rector\Core\Rector\AbstractRector implements ScopeAwarePhpRectorInterface
|
||||
{
|
||||
/**
|
||||
|
2
vendor/autoload.php
vendored
2
vendor/autoload.php
vendored
@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInit53341881e617b474160c38f10913c08f::getLoader();
|
||||
return ComposerAutoloaderInit032dc2759a324767b751e7999872a2df::getLoader();
|
||||
|
14
vendor/composer/autoload_real.php
vendored
14
vendor/composer/autoload_real.php
vendored
@ -2,7 +2,7 @@
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInit53341881e617b474160c38f10913c08f
|
||||
class ComposerAutoloaderInit032dc2759a324767b751e7999872a2df
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
@ -22,19 +22,19 @@ class ComposerAutoloaderInit53341881e617b474160c38f10913c08f
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInit53341881e617b474160c38f10913c08f', 'loadClassLoader'), true, true);
|
||||
spl_autoload_register(array('ComposerAutoloaderInit032dc2759a324767b751e7999872a2df', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInit53341881e617b474160c38f10913c08f', 'loadClassLoader'));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInit032dc2759a324767b751e7999872a2df', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInit53341881e617b474160c38f10913c08f::getInitializer($loader));
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInit032dc2759a324767b751e7999872a2df::getInitializer($loader));
|
||||
|
||||
$loader->setClassMapAuthoritative(true);
|
||||
$loader->register(true);
|
||||
|
||||
$includeFiles = \Composer\Autoload\ComposerStaticInit53341881e617b474160c38f10913c08f::$files;
|
||||
$includeFiles = \Composer\Autoload\ComposerStaticInit032dc2759a324767b751e7999872a2df::$files;
|
||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||
composerRequire53341881e617b474160c38f10913c08f($fileIdentifier, $file);
|
||||
composerRequire032dc2759a324767b751e7999872a2df($fileIdentifier, $file);
|
||||
}
|
||||
|
||||
return $loader;
|
||||
@ -46,7 +46,7 @@ class ComposerAutoloaderInit53341881e617b474160c38f10913c08f
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
function composerRequire53341881e617b474160c38f10913c08f($fileIdentifier, $file)
|
||||
function composerRequire032dc2759a324767b751e7999872a2df($fileIdentifier, $file)
|
||||
{
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
8
vendor/composer/autoload_static.php
vendored
8
vendor/composer/autoload_static.php
vendored
@ -4,7 +4,7 @@
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInit53341881e617b474160c38f10913c08f
|
||||
class ComposerStaticInit032dc2759a324767b751e7999872a2df
|
||||
{
|
||||
public static $files = array (
|
||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||
@ -3397,9 +3397,9 @@ class ComposerStaticInit53341881e617b474160c38f10913c08f
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInit53341881e617b474160c38f10913c08f::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInit53341881e617b474160c38f10913c08f::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInit53341881e617b474160c38f10913c08f::$classMap;
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInit032dc2759a324767b751e7999872a2df::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInit032dc2759a324767b751e7999872a2df::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInit032dc2759a324767b751e7999872a2df::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
|
576
vendor/composer/installed.json
vendored
576
vendor/composer/installed.json
vendored
@ -803,17 +803,17 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan\/phpstan",
|
||||
"version": "1.7.14",
|
||||
"version_normalized": "1.7.14.0",
|
||||
"version": "1.7.15",
|
||||
"version_normalized": "1.7.15.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/phpstan\/phpstan.git",
|
||||
"reference": "e6f145f196a59c7ca91ea926c87ef3d936c4305f"
|
||||
"reference": "cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/phpstan\/phpstan\/zipball\/e6f145f196a59c7ca91ea926c87ef3d936c4305f",
|
||||
"reference": "e6f145f196a59c7ca91ea926c87ef3d936c4305f",
|
||||
"url": "https:\/\/api.github.com\/repos\/phpstan\/phpstan\/zipball\/cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a",
|
||||
"reference": "cd0202ea1b1fc6d1bbe156c6e2e18a03e0ff160a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -822,7 +822,7 @@
|
||||
"conflict": {
|
||||
"phpstan\/phpstan-shim": "*"
|
||||
},
|
||||
"time": "2022-06-14T13:09:35+00:00",
|
||||
"time": "2022-06-20T08:29:01+00:00",
|
||||
"bin": [
|
||||
"phpstan",
|
||||
"phpstan.phar"
|
||||
@ -841,7 +841,7 @@
|
||||
"description": "PHPStan - PHP Static Analysis Tool",
|
||||
"support": {
|
||||
"issues": "https:\/\/github.com\/phpstan\/phpstan\/issues",
|
||||
"source": "https:\/\/github.com\/phpstan\/phpstan\/tree\/1.7.14"
|
||||
"source": "https:\/\/github.com\/phpstan\/phpstan\/tree\/1.7.15"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3256,17 +3256,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/astral",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/astral.git",
|
||||
"reference": "5750e351ea904487d55d790d01e44a0ea86dc39e"
|
||||
"reference": "0b385657258b53b315a30886843d895a5567008a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/astral\/zipball\/5750e351ea904487d55d790d01e44a0ea86dc39e",
|
||||
"reference": "5750e351ea904487d55d790d01e44a0ea86dc39e",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/astral\/zipball\/0b385657258b53b315a30886843d895a5567008a",
|
||||
"reference": "0b385657258b53b315a30886843d895a5567008a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3277,37 +3277,37 @@
|
||||
"phpstan\/phpstan": "^1.7.12",
|
||||
"symfony\/config": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<9.4.70",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<9.4.70",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5",
|
||||
"symplify\/easy-testing": "^11.0.3"
|
||||
"symplify\/easy-testing": "^11.0.4"
|
||||
},
|
||||
"time": "2022-06-13T23:34:27+00:00",
|
||||
"time": "2022-06-20T12:41:52+00:00",
|
||||
"type": "phpstan-extension",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3331,7 +3331,7 @@
|
||||
],
|
||||
"description": "Toolking for smart daily work with AST",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/astral\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/astral\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3347,51 +3347,51 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/autowire-array-parameter",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/autowire-array-parameter.git",
|
||||
"reference": "602e611bddecec1db0eb31bff0c8562b33c5d58e"
|
||||
"reference": "6f574b368961139782f6c31fbdcae3b85833512b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/autowire-array-parameter\/zipball\/602e611bddecec1db0eb31bff0c8562b33c5d58e",
|
||||
"reference": "602e611bddecec1db0eb31bff0c8562b33c5d58e",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/autowire-array-parameter\/zipball\/6f574b368961139782f6c31fbdcae3b85833512b",
|
||||
"reference": "6f574b368961139782f6c31fbdcae3b85833512b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"nette\/utils": "^3.2",
|
||||
"php": ">=8.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:34:28+00:00",
|
||||
"time": "2022-06-20T12:41:32+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3410,7 +3410,7 @@
|
||||
],
|
||||
"description": "Autowire array parameters for your Symfony applications",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/autowire-array-parameter\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/autowire-array-parameter\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3426,17 +3426,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/composer-json-manipulator",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/composer-json-manipulator.git",
|
||||
"reference": "70a1de35b7b60964c3a6994a3df78af769c7e224"
|
||||
"reference": "98bdf3763df85e9072bb9952bce000a411eb5014"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/composer-json-manipulator\/zipball\/70a1de35b7b60964c3a6994a3df78af769c7e224",
|
||||
"reference": "70a1de35b7b60964c3a6994a3df78af769c7e224",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/composer-json-manipulator\/zipball\/98bdf3763df85e9072bb9952bce000a411eb5014",
|
||||
"reference": "98bdf3763df85e9072bb9952bce000a411eb5014",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3445,35 +3445,35 @@
|
||||
"symfony\/config": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/filesystem": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<9.4.70",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:34:41+00:00",
|
||||
"time": "2022-06-20T12:41:39+00:00",
|
||||
"type": "symfony-bundle",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3492,7 +3492,7 @@
|
||||
],
|
||||
"description": "Package to load, merge and save composer.json file(s)",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/composer-json-manipulator\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/composer-json-manipulator\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3508,17 +3508,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/easy-parallel",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/easy-parallel.git",
|
||||
"reference": "9db3d3e6fd7afbadb4f844ae1ff9001cf5a9a3c1"
|
||||
"reference": "74ec5bee9a0f42199fdd73cc3e7c593baf0037e3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/easy-parallel\/zipball\/9db3d3e6fd7afbadb4f844ae1ff9001cf5a9a3c1",
|
||||
"reference": "9db3d3e6fd7afbadb4f844ae1ff9001cf5a9a3c1",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/easy-parallel\/zipball\/74ec5bee9a0f42199fdd73cc3e7c593baf0037e3",
|
||||
"reference": "74ec5bee9a0f42199fdd73cc3e7c593baf0037e3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3528,34 +3528,34 @@
|
||||
"react\/event-loop": "^1.3",
|
||||
"react\/socket": "^1.11",
|
||||
"symfony\/console": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:34:38+00:00",
|
||||
"time": "2022-06-20T12:41:43+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3575,23 +3575,23 @@
|
||||
"description": "Helper package for easier CLI project parallelization",
|
||||
"support": {
|
||||
"issues": "https:\/\/github.com\/symplify\/easy-parallel\/issues",
|
||||
"source": "https:\/\/github.com\/symplify\/easy-parallel\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/easy-parallel\/tree\/11.0.4"
|
||||
},
|
||||
"install-path": "..\/symplify\/easy-parallel"
|
||||
},
|
||||
{
|
||||
"name": "symplify\/easy-testing",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/easy-testing.git",
|
||||
"reference": "45a2f4e676213732648b8bdb6806e85f0d7e71fa"
|
||||
"reference": "d3c177979762eed6d9d8dbc726ccd15bda68b849"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/easy-testing\/zipball\/45a2f4e676213732648b8bdb6806e85f0d7e71fa",
|
||||
"reference": "45a2f4e676213732648b8bdb6806e85f0d7e71fa",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/easy-testing\/zipball\/d3c177979762eed6d9d8dbc726ccd15bda68b849",
|
||||
"reference": "d3c177979762eed6d9d8dbc726ccd15bda68b849",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3600,34 +3600,34 @@
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/finder": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:34:47+00:00",
|
||||
"time": "2022-06-20T12:41:48+00:00",
|
||||
"bin": [
|
||||
"bin\/easy-testing"
|
||||
],
|
||||
@ -3649,7 +3649,7 @@
|
||||
],
|
||||
"description": "Testing made easy",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/easy-testing\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/easy-testing\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3665,17 +3665,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/package-builder",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/package-builder.git",
|
||||
"reference": "ec0a84707b134b4819daabee5effdd27a1dc5fd3"
|
||||
"reference": "0180e83cc634b79c04120e49f0bd8975274ed355"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/package-builder\/zipball\/ec0a84707b134b4819daabee5effdd27a1dc5fd3",
|
||||
"reference": "ec0a84707b134b4819daabee5effdd27a1dc5fd3",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/package-builder\/zipball\/0180e83cc634b79c04120e49f0bd8975274ed355",
|
||||
"reference": "0180e83cc634b79c04120e49f0bd8975274ed355",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3686,34 +3686,34 @@
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/finder": "^6.0",
|
||||
"symplify\/easy-testing": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/easy-testing": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:35:10+00:00",
|
||||
"time": "2022-06-20T12:41:52+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3732,7 +3732,7 @@
|
||||
],
|
||||
"description": "Dependency Injection, Console and Kernel toolkit for Symplify packages.",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/package-builder\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/package-builder\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3748,17 +3748,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/rule-doc-generator-contracts",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/rule-doc-generator-contracts.git",
|
||||
"reference": "520f510be924422e60e29cc407084dbbc188f4af"
|
||||
"reference": "e042030324f421c9df55b7669db3d73bd18824eb"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/rule-doc-generator-contracts\/zipball\/520f510be924422e60e29cc407084dbbc188f4af",
|
||||
"reference": "520f510be924422e60e29cc407084dbbc188f4af",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/rule-doc-generator-contracts\/zipball\/e042030324f421c9df55b7669db3d73bd18824eb",
|
||||
"reference": "e042030324f421c9df55b7669db3d73bd18824eb",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3766,29 +3766,29 @@
|
||||
"php": ">=8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/package-builder": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/package-builder": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"time": "2022-06-13T23:35:31+00:00",
|
||||
"time": "2022-06-20T12:42:12+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3807,7 +3807,7 @@
|
||||
],
|
||||
"description": "Contracts for production code of RuleDocGenerator",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/rule-doc-generator-contracts\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/rule-doc-generator-contracts\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3823,17 +3823,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/skipper",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/skipper.git",
|
||||
"reference": "16386db2ccee25e6e33e4ee8db24e107aa48431d"
|
||||
"reference": "be6382db117065023c4bb811d917038105e62a3a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/skipper\/zipball\/16386db2ccee25e6e33e4ee8db24e107aa48431d",
|
||||
"reference": "16386db2ccee25e6e33e4ee8db24e107aa48431d",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/skipper\/zipball\/be6382db117065023c4bb811d917038105e62a3a",
|
||||
"reference": "be6382db117065023c4bb811d917038105e62a3a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3843,34 +3843,34 @@
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/filesystem": "^6.0",
|
||||
"symfony\/finder": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:35:33+00:00",
|
||||
"time": "2022-06-20T12:42:11+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3889,7 +3889,7 @@
|
||||
],
|
||||
"description": "Skip files by rule class, directory, file or fnmatch",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/skipper\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/skipper\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3905,17 +3905,17 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/smart-file-system",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/smart-file-system.git",
|
||||
"reference": "3111181d7a8ec792371b713fad91eaa2f387ba18"
|
||||
"reference": "2bd34c19df7adf6198efb1c12f0e26b24e042ae6"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/smart-file-system\/zipball\/3111181d7a8ec792371b713fad91eaa2f387ba18",
|
||||
"reference": "3111181d7a8ec792371b713fad91eaa2f387ba18",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/smart-file-system\/zipball\/2bd34c19df7adf6198efb1c12f0e26b24e042ae6",
|
||||
"reference": "2bd34c19df7adf6198efb1c12f0e26b24e042ae6",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3925,33 +3925,33 @@
|
||||
"symfony\/finder": "^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/package-builder": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/package-builder": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"nette\/finder": "^2.5",
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:35:40+00:00",
|
||||
"time": "2022-06-20T12:42:12+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -3970,7 +3970,7 @@
|
||||
],
|
||||
"description": "Sanitized FileInfo with safe getRealPath() and other handy methods",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/smart-file-system\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/smart-file-system\/tree\/11.0.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -3986,52 +3986,52 @@
|
||||
},
|
||||
{
|
||||
"name": "symplify\/symplify-kernel",
|
||||
"version": "11.0.3",
|
||||
"version_normalized": "11.0.3.0",
|
||||
"version": "11.0.4",
|
||||
"version_normalized": "11.0.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https:\/\/github.com\/symplify\/symplify-kernel.git",
|
||||
"reference": "3a7b2143abe1f616af467a46ffa60d853ca57574"
|
||||
"reference": "b2a1553d60f332572c8d9cf3b33cbbce33da15c2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/symplify-kernel\/zipball\/3a7b2143abe1f616af467a46ffa60d853ca57574",
|
||||
"reference": "3a7b2143abe1f616af467a46ffa60d853ca57574",
|
||||
"url": "https:\/\/api.github.com\/repos\/symplify\/symplify-kernel\/zipball\/b2a1553d60f332572c8d9cf3b33cbbce33da15c2",
|
||||
"reference": "b2a1553d60f332572c8d9cf3b33cbbce33da15c2",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.0",
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/autowire-array-parameter": "^11.0.3",
|
||||
"symplify\/composer-json-manipulator": "^11.0.3",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/autowire-array-parameter": "^11.0.4",
|
||||
"symplify\/composer-json-manipulator": "^11.0.4",
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"webmozart\/assert": "^1.10"
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"time": "2022-06-13T23:35:45+00:00",
|
||||
"time": "2022-06-20T12:42:19+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -4050,7 +4050,7 @@
|
||||
],
|
||||
"description": "Internal Kernel for Symplify packages",
|
||||
"support": {
|
||||
"source": "https:\/\/github.com\/symplify\/symplify-kernel\/tree\/11.0.3"
|
||||
"source": "https:\/\/github.com\/symplify\/symplify-kernel\/tree\/11.0.4"
|
||||
},
|
||||
"install-path": "..\/symplify\/symplify-kernel"
|
||||
},
|
||||
|
2
vendor/composer/installed.php
vendored
2
vendor/composer/installed.php
vendored
File diff suppressed because one or more lines are too long
BIN
vendor/phpstan/phpstan/phpstan.phar
vendored
BIN
vendor/phpstan/phpstan/phpstan.phar
vendored
Binary file not shown.
26
vendor/phpstan/phpstan/phpstan.phar.asc
vendored
26
vendor/phpstan/phpstan/phpstan.phar.asc
vendored
@ -1,16 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEE0yaA1ZV9xxFr4pwUzxoQjQ565yAFAmKoiIUACgkQzxoQjQ56
|
||||
5yA2TA//ceQIisicHmbufO3UGho4N5pPt/idvq5uNCi1FyIkTKRiukH15YemAhcJ
|
||||
42jC5hfUX2G9mcFp+B8sOhDAawFaKcXVpw82FdMDOWS0IOiQaHqltqxS/XkWMt4C
|
||||
L6zhpjbxHM+MCLYoB5rE5oi8gxqGA85TOty3U6Gb102r1i+tDYEs1oHZvuPorEfh
|
||||
Lj1wsMGCGSXakbwbNJYxGE5fQz+N58rORlGKy8jI/v6hnfW5dtZjGdxoTZOLh8V1
|
||||
P/zy3D+4kjrggu2VF1IynZOXPiRI8Ph6ADDwln4dYZEgzAynHzMajqK/BcLogBEK
|
||||
2aK/trDMT3pSwng1/sB3OfOkN+djs4JK6JIaT+M/Iwc16wxzUQktmG8c1gpcFsiP
|
||||
0GJUMmgady8BrWsJQX8Z4CNRsAJ+fLPFfvmqgHHYvd6uQoIp5Jx+GkbugrUpVNsC
|
||||
2zApmN6gPSkBaoO30di3ia+Pii4GS+axOBVqOQ6IWUbclcxAaWwBDjkUHN2i8yw2
|
||||
sX1x+Ujl5O3MN/aNS36Hr0Qf2oieq2mlwXjFpsG/auljTix+/3Otbb0U5HZxDZkL
|
||||
txlX8uIsUhqFLMJYtEhoqrUnkoukDHVq+NjL4JSqfJJae4E83y5eHwtCkQ4ufhce
|
||||
vlAR1ekQKV6IMirQYZMbUqcWZZda2tKIva76Lq5fdQM6f8dVseI=
|
||||
=17Ml
|
||||
iQIzBAABCgAdFiEE0yaA1ZV9xxFr4pwUzxoQjQ565yAFAmKwL8IACgkQzxoQjQ56
|
||||
5yCgVQ/+NAdnFjnQhhg3y57vJtTfafwZBob1jRLTrSC1z1vRui7RF37qYsh8M5TB
|
||||
H1cpT7IrQYPcIWSrFEn47TWKWIDuUfM1bJg+PDhEETK+YbiTwu0QBPXkECBPgugM
|
||||
X4oMB4RD4xWD05wQg5eDqqcSig4FoKm0WkQIe/R30dnr/NJQY2YEUbWy5aotnS0F
|
||||
tBeYdbNVj0t1QZe6oI1vse/k/CsVU6CUJoNNAO/CobkJSFeJQPyXTLbHOwMfrXD6
|
||||
es08wsmc0WnFjciUfiPflqYZFM9u60JhJZOioxmJClbe679Kqp5/109JPreqigxU
|
||||
M+RK6rSmNiBwOavywnm/14uiF4Yg58TXIOAwLWBUFzcjCYzdPwLIDg6wV7Td2zfs
|
||||
3Ua18XZZWxGsEoMX5kM/4ud/pFEakqiKYnmkliJLN8gaEPU4uL36+QxExrQgQ/w6
|
||||
YIMP8sMNCc3lKxSwMjypcQ/hoDYPIaS1vddB66qXI69x9qp7zNelfkv/KjYGLCIQ
|
||||
vCJD6yxfJtkP1thK01bG9SWra+Wlwl8KGxagkUJPNcc3FHeBUAGLBj0vuEqwUFOP
|
||||
JWjuE+qg3+8bqhnNMMhqs/xi+VJxVnnBQOtIY/A/2iPlweujbcd2Mt2RBjSbgbrX
|
||||
XFFhaoNbkh2GIlhgSHiXlcy6Qtyf9ZL3gLD3EULm46WLncxs+mM=
|
||||
=903G
|
||||
-----END PGP SIGNATURE-----
|
||||
|
44
vendor/symplify/astral/composer.json
vendored
44
vendor/symplify/astral/composer.json
vendored
@ -7,16 +7,16 @@
|
||||
"php": ">=8.0",
|
||||
"nette\/utils": "^3.2",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"phpstan\/phpstan": "^1.7.12",
|
||||
"phpstan\/phpdoc-parser": "^1.6.0",
|
||||
"symfony\/config": "^6.0",
|
||||
"nikic\/php-parser": "^4.14.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"symplify\/easy-testing": "^11.0.3",
|
||||
"symplify\/easy-testing": "^11.0.4",
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
},
|
||||
"autoload": {
|
||||
@ -40,26 +40,26 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<9.4.70",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<9.4.70",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
@ -6,7 +6,7 @@
|
||||
"php": ">=8.0",
|
||||
"nette\/utils": "^3.2",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -27,26 +27,26 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
@ -9,9 +9,9 @@
|
||||
"symfony\/config": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/filesystem": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -32,25 +32,25 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<9.4.70",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/easy-parallel/composer.json
vendored
42
vendor/symplify/easy-parallel/composer.json
vendored
@ -9,7 +9,7 @@
|
||||
"react\/event-loop": "^1.3",
|
||||
"react\/socket": "^1.11",
|
||||
"symfony\/console": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -33,26 +33,26 @@
|
||||
"platform-check": false
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/easy-testing/composer.json
vendored
42
vendor/symplify/easy-testing/composer.json
vendored
@ -12,9 +12,9 @@
|
||||
"symfony\/finder": "^6.0",
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -35,24 +35,24 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/package-builder/composer.json
vendored
42
vendor/symplify/package-builder/composer.json
vendored
@ -10,8 +10,8 @@
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/finder": "^6.0",
|
||||
"symplify\/symplify-kernel": "^11.0.3",
|
||||
"symplify\/easy-testing": "^11.0.3"
|
||||
"symplify\/symplify-kernel": "^11.0.4",
|
||||
"symplify\/easy-testing": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -32,25 +32,25 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
@ -17,27 +17,27 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/package-builder": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/smart-file-system": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/package-builder": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/smart-file-system": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/skipper/composer.json
vendored
42
vendor/symplify/skipper/composer.json
vendored
@ -9,9 +9,9 @@
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symfony\/finder": "^6.0",
|
||||
"symfony\/filesystem": "^6.0",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/symplify-kernel": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.3"
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"symplify\/symplify-kernel": "^11.0.4",
|
||||
"symplify\/smart-file-system": "^11.0.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit\/phpunit": "^9.5"
|
||||
@ -32,24 +32,24 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/smart-file-system/composer.json
vendored
42
vendor/symplify/smart-file-system/composer.json
vendored
@ -28,27 +28,27 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/composer-json-manipulator": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/autowire-array-parameter": "<11.0.3",
|
||||
"symplify\/package-builder": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/symplify-kernel": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/composer-json-manipulator": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/autowire-array-parameter": "<11.0.4",
|
||||
"symplify\/package-builder": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/symplify-kernel": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
42
vendor/symplify/symplify-kernel/composer.json
vendored
42
vendor/symplify/symplify-kernel/composer.json
vendored
@ -6,10 +6,10 @@
|
||||
"php": ">=8.0",
|
||||
"symfony\/console": "^6.0",
|
||||
"symfony\/dependency-injection": "^6.0",
|
||||
"symplify\/smart-file-system": "^11.0.3",
|
||||
"symplify\/composer-json-manipulator": "^11.0.3",
|
||||
"symplify\/autowire-array-parameter": "^11.0.3",
|
||||
"symplify\/package-builder": "^11.0.3",
|
||||
"symplify\/smart-file-system": "^11.0.4",
|
||||
"symplify\/composer-json-manipulator": "^11.0.4",
|
||||
"symplify\/autowire-array-parameter": "^11.0.4",
|
||||
"symplify\/package-builder": "^11.0.4",
|
||||
"webmozart\/assert": "^1.10"
|
||||
},
|
||||
"require-dev": {
|
||||
@ -31,23 +31,23 @@
|
||||
}
|
||||
},
|
||||
"conflict": {
|
||||
"symplify\/astral": "<11.0.3",
|
||||
"symplify\/easy-coding-standard": "<11.0.3",
|
||||
"symplify\/phpstan-rules": "<11.0.3",
|
||||
"symplify\/easy-testing": "<11.0.3",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.3",
|
||||
"symplify\/php-config-printer": "<11.0.3",
|
||||
"symplify\/phpstan-extensions": "<11.0.3",
|
||||
"symplify\/rule-doc-generator": "<11.0.3",
|
||||
"symplify\/vendor-patches": "<11.0.3",
|
||||
"symplify\/skipper": "<11.0.3",
|
||||
"symplify\/symfony-static-dumper": "<11.0.3",
|
||||
"symplify\/monorepo-builder": "<11.0.3",
|
||||
"symplify\/config-transformer": "<11.0.3",
|
||||
"symplify\/easy-ci": "<11.0.3",
|
||||
"symplify\/coding-standard": "<11.0.3",
|
||||
"symplify\/easy-parallel": "<11.0.3",
|
||||
"symplify\/neon-config-dumper": "<11.0.3"
|
||||
"symplify\/astral": "<11.0.4",
|
||||
"symplify\/easy-coding-standard": "<11.0.4",
|
||||
"symplify\/phpstan-rules": "<11.0.4",
|
||||
"symplify\/easy-testing": "<11.0.4",
|
||||
"symplify\/rule-doc-generator-contracts": "<11.0.4",
|
||||
"symplify\/php-config-printer": "<11.0.4",
|
||||
"symplify\/phpstan-extensions": "<11.0.4",
|
||||
"symplify\/rule-doc-generator": "<11.0.4",
|
||||
"symplify\/vendor-patches": "<11.0.4",
|
||||
"symplify\/skipper": "<11.0.4",
|
||||
"symplify\/symfony-static-dumper": "<11.0.4",
|
||||
"symplify\/monorepo-builder": "<11.0.4",
|
||||
"symplify\/config-transformer": "<11.0.4",
|
||||
"symplify\/easy-ci": "<11.0.4",
|
||||
"symplify\/coding-standard": "<11.0.4",
|
||||
"symplify\/easy-parallel": "<11.0.4",
|
||||
"symplify\/neon-config-dumper": "<11.0.4"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
Loading…
x
Reference in New Issue
Block a user