Add Simple Message module
This commit is contained in:
parent
779a702c87
commit
6991ecd271
|
@ -11,3 +11,5 @@ $databases['default']['default'] = [
|
||||||
|
|
||||||
$settings['config_sync_directory'] = '../config/sync';
|
$settings['config_sync_directory'] = '../config/sync';
|
||||||
$settings['hash_salt'] = env('DRUPAL_SALT');
|
$settings['hash_salt'] = env('DRUPAL_SALT');
|
||||||
|
|
||||||
|
$config['simple_message.config']['message'] = 'Hello stream!';
|
||||||
|
|
|
@ -12,6 +12,10 @@
|
||||||
{
|
{
|
||||||
"type": "composer",
|
"type": "composer",
|
||||||
"url": "https://packages.drupal.org/8"
|
"url": "https://packages.drupal.org/8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://github.com/opdavies/drupal-module-simple-message"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -19,6 +23,7 @@
|
||||||
"drupal/core-composer-scaffold": "^9.0",
|
"drupal/core-composer-scaffold": "^9.0",
|
||||||
"drupal/core-project-message": "^9.0",
|
"drupal/core-project-message": "^9.0",
|
||||||
"drupal/core-recommended": "^9.0",
|
"drupal/core-recommended": "^9.0",
|
||||||
|
"drupal/simple_message": "^2",
|
||||||
"drush/drush": "^10.3",
|
"drush/drush": "^10.3",
|
||||||
"vlucas/phpdotenv": "^5.1"
|
"vlucas/phpdotenv": "^5.1"
|
||||||
},
|
},
|
||||||
|
|
27
composer.lock
generated
27
composer.lock
generated
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "775a5f89776c85816ffb42ffd92024bc",
|
"content-hash": "a7168dc7ca96cd8c0a18d6554a84109e",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "asm89/stack-cors",
|
"name": "asm89/stack-cors",
|
||||||
|
@ -1688,6 +1688,31 @@
|
||||||
"description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
|
"description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
|
||||||
"time": "2020-07-08T18:31:41+00:00"
|
"time": "2020-07-08T18:31:41+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "drupal/simple_message",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/opdavies/drupal-module-simple-message.git",
|
||||||
|
"reference": "b200b6514bccabce8d3eab6f3be31dacd6b10890"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/opdavies/drupal-module-simple-message/zipball/b200b6514bccabce8d3eab6f3be31dacd6b10890",
|
||||||
|
"reference": "b200b6514bccabce8d3eab6f3be31dacd6b10890",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^7.4"
|
||||||
|
},
|
||||||
|
"type": "drupal-module",
|
||||||
|
"description": "Displays a simple message.",
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/opdavies/drupal-module-simple-message/tree/2.0.0",
|
||||||
|
"issues": "https://github.com/opdavies/drupal-module-simple-message/issues"
|
||||||
|
},
|
||||||
|
"time": "2020-07-21T18:09:57+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "drush/drush",
|
"name": "drush/drush",
|
||||||
"version": "10.3.1",
|
"version": "10.3.1",
|
||||||
|
|
|
@ -33,6 +33,7 @@ module:
|
||||||
rdf: 0
|
rdf: 0
|
||||||
search: 0
|
search: 0
|
||||||
shortcut: 0
|
shortcut: 0
|
||||||
|
simple_message: 0
|
||||||
system: 0
|
system: 0
|
||||||
taxonomy: 0
|
taxonomy: 0
|
||||||
text: 0
|
text: 0
|
||||||
|
|
Reference in a new issue