Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"drupal/core-composer-scaffold": "^9.4",
"drupal/core-recommended": "^9.4",
"drupal/gutenberg": "^2.5",
"drupal/twig_debugger": "^1.1",
"drush/drush": "^11.0",
"vlucas/phpdotenv": "^5.1",
"webflo/drupal-finder": "^1.2"
Expand Down Expand Up @@ -71,6 +72,9 @@
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false
}
},
"installer-paths": {
Expand Down
51 changes: 50 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2805,6 +2805,58 @@
},
"install-path": "../../web/modules/contrib/gutenberg"
},
{
"name": "drupal/twig_debugger",
"version": "1.1.3",
"version_normalized": "1.1.3.0",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/twig_debugger.git",
"reference": "1.1.3"
},
"dist": {
"type": "zip",
"url": "https://ftp.drupal.org/files/projects/twig_debugger-1.1.3.zip",
"reference": "1.1.3",
"shasum": "72cb21a98e49e82164f8f06d9af9a9ac6e2b0596"
},
"require": {
"drupal/core": "^8 || ^9 || ^10"
},
"type": "drupal-module",
"extra": {
"drupal": {
"version": "1.1.3",
"datestamp": "1658045471",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
}
}
},
"installation-source": "dist",
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Neslee Canil Pinto",
"homepage": "https://www.drupal.org/user/3580850"
}
],
"description": "Enables Twig Debugging for your website.",
"homepage": "https://www.drupal.org/project/twig_debugger",
"keywords": [
"Drupal",
"Twig Debugger\n"
],
"support": {
"source": "https://git.drupalcode.org/project/twig_debugger",
"issues": "https://www.drupal.org/project/issues/twig_debugger"
},
"install-path": "../../web/modules/contrib/twig_debugger"
},
{
"name": "drush/drush",
"version": "11.1.1",
Expand Down
13 changes: 11 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'drupal-composer/drupal-project',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'b04a225eb1066e393a516694f05f64cf18f3fbd5',
'reference' => '3519d8090b511b6661b0b6b20b557fccf8c77655',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -271,7 +271,7 @@
'drupal-composer/drupal-project' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'b04a225eb1066e393a516694f05f64cf18f3fbd5',
'reference' => '3519d8090b511b6661b0b6b20b557fccf8c77655',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -517,6 +517,15 @@
'aliases' => array(),
'dev_requirement' => false,
),
'drupal/twig_debugger' => array(
'pretty_version' => '1.1.3',
'version' => '1.1.3.0',
'reference' => '1.1.3',
'type' => 'drupal-module',
'install_path' => __DIR__ . '/../../web/modules/contrib/twig_debugger',
'aliases' => array(),
'dev_requirement' => false,
),
'drush/drush' => array(
'pretty_version' => '11.1.1',
'version' => '11.1.1.0',
Expand Down
3 changes: 3 additions & 0 deletions web/modules/contrib/component/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ignore OS and project files
*.DS_Store
*.idea
Loading