Skip to content

Commit

Permalink
ACMS-1514: Initial codebase added.
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalkhode1 committed Apr 1, 2023
1 parent f1270b3 commit 79c9a44
Show file tree
Hide file tree
Showing 29 changed files with 5,637 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor
.idea/
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# drupal-recommended-settings
The composer plugin to add Acquia's drupal recommended settings in your drupal project.
# Acquia Drupal Recommended Settings
This plugin adds the Acquia's recommended settings in your Drupal project, so that you don't need to worry about making any changes in your settings.php file.
This plugin uses the complete settings.php file generation logic from [Acquia Blt](https://github.com/acquia/blt) project.

## Installation and usage

In your project, add the repository and require the plugin with Composer:

```
composer config repositories.recommended vcs [email protected]:acquia/drupal-recommended-settings.git
composer require acquia/drupal-recommended-settings
```

# License

Copyright (C) 2023 Acquia, Inc.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
49 changes: 49 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "acquia/drupal-recommended-settings",
"type": "composer-plugin",
"description": "The composer plugin for adding drupal-recommended-settings for Acquia Cloud.",
"keywords": [
"drupal",
"acquia",
"drupal-recommended-settings"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Vishal Khode",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"composer-plugin-api": "^2",
"acquia/drupal-environment-detector": "^1.5.3",
"composer/composer": "^2.5",
"consolidation/config": "^1.0.0 || ^2.0.0",
"dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
"grasmash/yaml-expander": "^3.0.2",
"loophp/phposinfo": "^1.7.1",
"symfony/filesystem": "^6.2",
"symfony/yaml": "^4.4 || ^5 || ^6"
},
"require-dev": {
"acquia/coding-standards": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"ergebnis/composer-normalize": "~2.15.0",
"phpro/grumphp-shim": "^1.5"
},
"extra": {
"class": "Acquia\\Drupal\\RecommendedSettings\\Plugin"
},
"autoload": {
"psr-4": {
"Acquia\\Drupal\\RecommendedSettings\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/acquia/drupal-recommended-settings/issues",
"docs": "https://docs.acquia.com/drupal-recommended-settings/"
}
}
Loading

0 comments on commit 79c9a44

Please sign in to comment.