Commit c72906d4 authored by Project Update Bot's avatar Project Update Bot Committed by Jonathan Sacksick
Browse files

Issue #3289157 by Project Update Bot, jsacksick: Automated Drupal 10 compatibility fixes.

parent c82f25f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  "homepage": "http://drupal.org/project/profile",
  "license": "GPL-2.0-or-later",
  "require": {
    "drupal/core": "^8.9 || ^9 || ^10",
    "drupal/core": "^9 || ^10",
    "drupal/entity": "^1.0-rc2"
  },
  "require-dev": {
+1 −1
Original line number Diff line number Diff line
name: Profile
type: module
description: 'Provides configurable user profiles.'
core_version_requirement: ^8.9 || ^9 || ^10
core_version_requirement: ^9 || ^10
configure: entity.profile_type.collection
dependencies:
  - drupal:field
+1 −1
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@

namespace Drupal\profile\Event;

use Symfony\Contracts\EventDispatcher\Event;
use Drupal\profile\Entity\ProfileInterface;
use Symfony\Component\EventDispatcher\Event;

/**
 * Defines the profile label event.
+1 −1
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@ type: module
description: 'Test module for Profile.'
package: Testing
dependencies:
  - profile
  - profile:profile
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ class ProfileDefaultTest extends ProfileTestBase {
    $this->assertSession()->pageTextContains($field_label);
    $edit = ["fields[{$id}_profiles][label]" => 'inline'];
    $edit = ["fields[{$id}_profiles][type]" => 'entity_reference_entity_view'];
    $this->drupalPostForm(NULL, $edit, t('Save'));
    $this->submitForm($edit, t('Save'));
  }

}