Commit 7d74fbac authored by catch's avatar catch
Browse files

Back to dev.

parent fe31efa5
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -439,7 +439,7 @@
        },
        {
            "name": "drupal/core",
            "version": "10.0.0-rc3",
            "version": "10.0.x-dev",
            "dist": {
                "type": "path",
                "url": "core",
@@ -594,7 +594,7 @@
        },
        {
            "name": "drupal/core-project-message",
            "version": "10.0.0-rc3",
            "version": "10.0.x-dev",
            "dist": {
                "type": "path",
                "url": "composer/Plugin/ProjectMessage",
@@ -627,7 +627,7 @@
        },
        {
            "name": "drupal/core-vendor-hardening",
            "version": "10.0.0-rc3",
            "version": "10.0.x-dev",
            "dist": {
                "type": "path",
                "url": "composer/Plugin/VendorHardening",
@@ -8378,7 +8378,11 @@
    ],
    "aliases": [],
    "minimum-stability": "dev",
    "stability-flags": [],
    "stability-flags": {
        "drupal/core": 20,
        "drupal/core-project-message": 20,
        "drupal/core-vendor-hardening": 20
    },
    "prefer-stable": true,
    "prefer-lowest": false,
    "platform": [],
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
        "webflo/drupal-core-strict": "*"
    },
    "require": {
        "drupal/core": "10.0.0-rc3",
        "drupal/core": "10.0.x-dev",
        "asm89/stack-cors": "~v2.1.1",
        "composer/semver": "~3.3.2",
        "doctrine/annotations": "~1.13.3",
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
        "webflo/drupal-core-require-dev": "*"
    },
    "require": {
        "drupal/core": "10.0.0-rc3",
        "drupal/core": "10.0.x-dev",
        "behat/mink": "v1.10.0",
        "behat/mink-browserkit-driver": "v2.1.0",
        "behat/mink-selenium2-driver": "v1.6.0",
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class Drupal {
  /**
   * The current system version.
   */
  const VERSION = '10.0.0-rc3';
  const VERSION = '10.0.0-dev';

  /**
   * Core API compatibility.
+4 −4
Original line number Diff line number Diff line
@@ -9,9 +9,9 @@
    "require": {
        "php": ">=8.1.0",
        "doctrine/annotations": "^1.13",
        "drupal/core-file-cache": "10.0.0-rc3",
        "drupal/core-plugin": "10.0.0-rc3",
        "drupal/core-utility": "10.0.0-rc3"
        "drupal/core-file-cache": "10.0.x-dev",
        "drupal/core-plugin": "10.0.x-dev",
        "drupal/core-utility": "10.0.x-dev"
    },
    "autoload": {
        "psr-4": {
@@ -23,5 +23,5 @@
            "This file was partially generated automatically. See: https://www.drupal.org/node/3293830"
        ]
    },
    "minimum-stability": "RC"
    "minimum-stability": "dev"
}
Loading