Commit 0cddc078 authored by Florent Torregrosa's avatar Florent Torregrosa Committed by Florent Torregrosa
Browse files

Issue #3273715 by Grimreaper: Fix Spellcheck, PHPCS, PHP MD, PHPCS Fixer, PHP...

Issue #3273715 by Grimreaper: Fix Spellcheck, PHPCS, PHP MD, PHPCS Fixer, PHP Stan, PHP MND, Composer normalize
parent e3edb3fe
Loading
Loading
Loading
Loading

composer.json

deleted100755 → 0
+0 −11
Original line number Diff line number Diff line
{
    "name": "drupal/ui_examples",
    "description": "Define example pages from modules and themes.",
    "license": "GPL-2.0-or-later",
    "type": "drupal-module",
    "keywords": [
        "drupal",
        "web",
        "ui"
    ]
}
+1 −1
Original line number Diff line number Diff line
name: 'UI Examples Defaults'
type: module
description: 'Provide some defaults examples for standard Drupal elements.'
core_version_requirement: ^8.8 || ^9
core_version_requirement: ^8.8 || ^9 || ^10
package: 'User interface'
dependencies:
  - ui_examples:ui_examples
+3 −3
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ class ExamplePluginManager extends DefaultPluginManager implements ExamplePlugin
    parent::processDefinition($definition, $plugin_id);
    // @todo Add validation of the plugin definition here.
    if (empty($definition['id'])) {
      throw new PluginException(sprintf('Example plugin property (%s) definition "id" is required.', $plugin_id));
      throw new PluginException(\sprintf('Example plugin property (%s) definition "id" is required.', $plugin_id));
    }
  }

+1 −1
Original line number Diff line number Diff line
name: 'UI Examples Test'
description: 'Provides test plugin.'
type: module
description: 'Provides test plugin.'
package: 'Testing'
+1 −1
Original line number Diff line number Diff line
name: 'UI Examples Test Disabled'
description: 'Disables test plugin.'
type: module
description: 'Disables test plugin.'
package: 'Testing'
Loading