-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1270b3
commit 79c9a44
Showing
29 changed files
with
5,637 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
vendor | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} |
Oops, something went wrong.