Skip to content

Commit

Permalink
chore(#1): install open social
Browse files Browse the repository at this point in the history
  • Loading branch information
Decipher committed Aug 2, 2022
1 parent e2a8fc1 commit f538fa1
Show file tree
Hide file tree
Showing 1,109 changed files with 65,170 additions and 10,565 deletions.
6 changes: 3 additions & 3 deletions drupal/.ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: drupal
name: social
type: drupal9
docroot: web
docroot: html
php_version: "7.4"
webserver_type: nginx-fpm
router_http_port: "80"
Expand Down Expand Up @@ -82,7 +82,7 @@ web_environment: []
# Please take care with this because it can cause great confusion.

# upload_dir: custom/upload/dir
# would set the destination path for ddev import-files to <docroot>/custom/upload/dir
# would set the destination path for ddev import-files to <docroot>/custom/upload/dir

# working_dir:
# web: /var/www/html
Expand Down
18 changes: 9 additions & 9 deletions drupal/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ bin/
drush/contrib/
keys/*.key
vendor/
web/core/
web/modules/contrib/
web/themes/contrib/
web/profiles/contrib/
web/libraries/
html/core/
html/modules/contrib/
html/themes/contrib/
html/profiles/contrib/
html/libraries/

# Ignore sensitive information
web/sites/*/settings.local.php
html/sites/*/settings.local.php

# Ignore Drupal's file directory
web/sites/*/files/
!web/sites/default/files/.gitkeep
html/sites/*/files/
!html/sites/default/files/.gitkeep

# Ignore SimpleTest multi-site environment.
web/sites/simpletest
html/sites/simpletest

# Ignore environment specific files.
.env
Expand Down
122 changes: 57 additions & 65 deletions drupal/composer.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,77 @@
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 9 projects with a relocated document root",
"name": "decipher/druxt_social",
"description": "Drupal Social backend for Druxt Social example project.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"goalgorilla/open_social": "~11.3.5",
"php": "^7.4",
"monolog/monolog": "^2.3.5",
"drush/drush": "*",
"drupal/tome": "^1.7",
"drupal-tome/tome_drush": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/realityloop/tome_drush"
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
"url": "https://asset-packagist.org"
}
],
"require": {
"composer/installers": "2.1.1",
"drupal-tome/tome_drush": "dev-feature/3-drush_11",
"drupal/core-composer-scaffold": "9.4.4",
"drupal/core-project-message": "9.4.4",
"drupal/core-recommended": "9.4.4",
"drupal/druxt": "1.1.1",
"drupal/tome": "^1.7",
"drush/drush": "^11.1"
},
"require-dev": {
"drupal/core-dev": "9.4.4"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
"web-root": "html/"
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"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"],
"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 the Drupal codebase </>",
"<bg=blue;fg=white> from the drupal/recommended-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",

" * Install the site: https://www.drupal.org/docs/8/install",
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
" * Get support: https://www.drupal.org/support",
" * Get involved with the Drupal community:",
" https://www.drupal.org/getting-involved",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message"
"html/core": [
"drupal/core"
],
"html/modules/contrib/{$name}": [
"type:drupal-module"
],
"html/profiles/contrib/social": [
"goalgorilla/open_social"
],
"html/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"html/themes/contrib/{$name}": [
"type:drupal-theme"
],
"html/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true,
"zaporylie/composer-drupal-optimizations": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-project-message": true
}
}
}
Loading

0 comments on commit f538fa1

Please sign in to comment.