Unverified Commit c97b8545 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3258902 by longwave, Spokje, catch, daffie: [Symfony 6] Bring...

Issue #3258902 by longwave, Spokje, catch, daffie: [Symfony 6] Bring stackphp/builder into core for Symfony 6 compatibility and remove it as a dependency
parent 9f5c2e99
Loading
Loading
Loading
Loading
+1 −56
Original line number Diff line number Diff line
@@ -448,7 +448,7 @@
            "dist": {
                "type": "path",
                "url": "core",
                "reference": "f6e86b91c8d470e57aa22b05e003a389d43a0813"
                "reference": "74774df5d4617d3526ff010605474301d9fa376f"
            },
            "require": {
                "asm89/stack-cors": "^2.0.2",
@@ -474,7 +474,6 @@
                "pear/archive_tar": "^1.4.14",
                "php": ">=8.0.2",
                "psr/log": "^1.0",
                "stack/builder": "^1.0",
                "symfony/console": "^5.4",
                "symfony/dependency-injection": "^5.4",
                "symfony/event-dispatcher": "^5.4",
@@ -2053,60 +2052,6 @@
            },
            "time": "2019-03-08T08:55:37+00:00"
        },
        {
            "name": "stack/builder",
            "version": "v1.0.6",
            "source": {
                "type": "git",
                "url": "https://github.com/stackphp/builder.git",
                "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
                "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
                "shasum": ""
            },
            "require": {
                "php": ">=7.2.0",
                "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
                "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
            },
            "require-dev": {
                "phpunit/phpunit": "~8.0",
                "symfony/routing": "^5.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Stack": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Igor Wiedler",
                    "email": "igor@wiedler.ch"
                }
            ],
            "description": "Builder for stack middleware based on HttpKernelInterface.",
            "keywords": [
                "stack"
            ],
            "support": {
                "issues": "https://github.com/stackphp/builder/issues",
                "source": "https://github.com/stackphp/builder/tree/v1.0.6"
            },
            "time": "2020-01-30T12:17:27+00:00"
        },
        {
            "name": "symfony/console",
            "version": "v5.4.2",
+0 −1
Original line number Diff line number Diff line
@@ -32,7 +32,6 @@
        "psr/http-message": "1.0.1",
        "psr/log": "1.1.4",
        "ralouphie/getallheaders": "3.0.3",
        "stack/builder": "v1.0.6",
        "symfony/console": "v5.4.2",
        "symfony/dependency-injection": "v5.4.2",
        "symfony/deprecation-contracts": "v2.5.0",
+0 −1
Original line number Diff line number Diff line
@@ -60,7 +60,6 @@ class Config {
    'sebastian/recursion-context' => ['tests'],
    'seld/jsonlint' => ['tests'],
    'squizlabs/php_codesniffer' => ['tests'],
    'stack/builder' => ['tests'],
    'symfony/browser-kit' => ['Tests'],
    'symfony/console' => ['Tests'],
    'symfony/css-selector' => ['Tests'],
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@
        "doctrine/annotations": "^1.12",
        "guzzlehttp/guzzle": "^7.3.0",
        "laminas/laminas-feed": "^2.12",
        "stack/builder": "^1.0",
        "egulias/email-validator": "^2.1.22|^3.0",
        "masterminds/html5": "^2.1",
        "symfony/psr-http-message-bridge": "^2.0",
+1 −1
Original line number Diff line number Diff line
@@ -758,7 +758,7 @@ services:
    class: Drupal\Core\Controller\TitleResolver
    arguments: ['@controller_resolver', '@string_translation', '@http_kernel.controller.argument_resolver']
  http_kernel:
    class: Stack\StackedHttpKernel
    class: Drupal\Core\StackMiddleware\StackedHttpKernel
  http_kernel.basic:
    class: Symfony\Component\HttpKernel\HttpKernel
    arguments: ['@event_dispatcher', '@controller_resolver', '@request_stack', '@http_kernel.controller.argument_resolver']
Loading