Add Drupal CMS files
This commit is contained in:
parent
8c87c46176
commit
dbeb58b7e8
2 changed files with 15279 additions and 0 deletions
105
drupal-cms/composer.json
Normal file
105
drupal-cms/composer.json
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
{
|
||||||
|
"name": "drupal/cms",
|
||||||
|
"version": "1.2.x-dev",
|
||||||
|
"description": "Drupal CMS is a ready-to-use platform built on Drupal core, offering smart defaults to get started quickly and enterprise-grade tools for marketers, designers, and content creators.",
|
||||||
|
"type": "project",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"homepage": "https://www.drupal.org/project/cms",
|
||||||
|
"support": {
|
||||||
|
"docs": "https://new.drupal.org/docs/drupal-cms",
|
||||||
|
"chat": "https://drupal.org/node/314178"
|
||||||
|
},
|
||||||
|
"repositories": {
|
||||||
|
"drupal": {
|
||||||
|
"type": "composer",
|
||||||
|
"url": "https://packages.drupal.org/8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"composer/composer": "^2.8",
|
||||||
|
"composer/installers": "^2.3",
|
||||||
|
"drupal/core": "@rc",
|
||||||
|
"drupal/core-composer-scaffold": "^11.2.4",
|
||||||
|
"drupal/core-project-message": "^11.2.4",
|
||||||
|
"drupal/core-recipe-unpack": "^11.2.4",
|
||||||
|
"drupal/core-recommended": "^11.2.4",
|
||||||
|
"drupal/core-vendor-hardening": "^11.2.4",
|
||||||
|
"drupal/drupal_cms_accessibility_tools": "^1.2",
|
||||||
|
"drupal/drupal_cms_ai": "^1.2",
|
||||||
|
"drupal/drupal_cms_blog": "^1.2",
|
||||||
|
"drupal/drupal_cms_case_study": "^1.2",
|
||||||
|
"drupal/drupal_cms_events": "^1.2",
|
||||||
|
"drupal/drupal_cms_forms": "^1.2",
|
||||||
|
"drupal/drupal_cms_google_analytics": "^1.2",
|
||||||
|
"drupal/drupal_cms_news": "^1.2",
|
||||||
|
"drupal/drupal_cms_page": "^1.2",
|
||||||
|
"drupal/drupal_cms_person": "^1.2",
|
||||||
|
"drupal/drupal_cms_project": "^1.2",
|
||||||
|
"drupal/drupal_cms_seo_tools": "^1.2",
|
||||||
|
"drupal/drupal_cms_starter": "^1.2",
|
||||||
|
"drupal/project_browser": "@beta",
|
||||||
|
"drupal/recipe_installer_kit": "^1-alpha6@alpha",
|
||||||
|
"drupal/webform": "@beta"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"drush/drush": "^13.6.1"
|
||||||
|
},
|
||||||
|
"conflict": {
|
||||||
|
"drupal/drupal": "*"
|
||||||
|
},
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"prefer-stable": true,
|
||||||
|
"config": {
|
||||||
|
"allow-plugins": {
|
||||||
|
"composer/installers": true,
|
||||||
|
"drupal/core-composer-scaffold": true,
|
||||||
|
"drupal/core-project-message": true,
|
||||||
|
"drupal/core-recipe-unpack": true,
|
||||||
|
"php-http/discovery": true,
|
||||||
|
"drupal/core-vendor-hardening": true
|
||||||
|
},
|
||||||
|
"bin-dir": "vendor/bin",
|
||||||
|
"sort-packages": true,
|
||||||
|
"optimize-autoloader": true
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"drupal-scaffold": {
|
||||||
|
"locations": {
|
||||||
|
"web-root": "web/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"installer-paths": {
|
||||||
|
"web/core": ["type:drupal-core"],
|
||||||
|
"web/libraries/{$name}": ["type:drupal-library"],
|
||||||
|
"web/modules/contrib/{$name}": ["type:drupal-module"],
|
||||||
|
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
|
||||||
|
"web/themes/contrib/{$name}": ["type:drupal-theme"],
|
||||||
|
"./drush/Commands/contrib/{$name}": ["type:drupal-drush"],
|
||||||
|
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
|
||||||
|
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
|
||||||
|
"./recipes/{$name}": ["type:drupal-recipe"],
|
||||||
|
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
|
||||||
|
},
|
||||||
|
"drupal-core-project-message": {
|
||||||
|
"include-keys": ["homepage", "support"],
|
||||||
|
"post-create-project-cmd-message": [
|
||||||
|
"<bg=blue;fg=white> </>",
|
||||||
|
"<bg=blue;fg=white> Congratulations, you’ve installed Drupal CMS! </>",
|
||||||
|
"<bg=blue;fg=white> </>",
|
||||||
|
"",
|
||||||
|
"<bg=yellow;fg=black>Next steps</>:",
|
||||||
|
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
|
||||||
|
" * Get support: https://drupal.org/support",
|
||||||
|
" * Get involved with the Drupal community: https://drupal.org/getting-involved"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"drupal-core-vendor-hardening": {
|
||||||
|
"composer/composer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"post-update-cmd": [
|
||||||
|
"@php -r \"@unlink('vendor/bin/composer');\""
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
15174
drupal-cms/composer.lock
generated
Normal file
15174
drupal-cms/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue