Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greg-1-anderson/core-recommended-dependencies
Prototype for drupal/core-recommended-dependencies (drupal-core-strict for 8.8.x)
https://github.com/greg-1-anderson/core-recommended-dependencies
Last synced: 18 days ago
JSON representation
Prototype for drupal/core-recommended-dependencies (drupal-core-strict for 8.8.x)
- Host: GitHub
- URL: https://github.com/greg-1-anderson/core-recommended-dependencies
- Owner: greg-1-anderson
- Created: 2019-08-24T00:54:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-25T17:27:30.000Z (over 5 years ago)
- Last Synced: 2024-10-26T06:51:00.319Z (2 months ago)
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# drupal/core-recommended-dependencies
This project is for use with a Composer-managed Drupal site. It is recommended
that all Composer-managed Drupal sites use this project.Require this project *instead of* the [drupal/core](https://github.com/drupal/core)
subtree split in order to guarentee that all of the dependencies from
`drupal/core` will be included in your Drupal site at exactly the same version
that was tested with the version of Drupal you are currently using.The consequences of *not* using this project is that Drupal's dependencies
may "float up" to more recent versions than were tested with Drupal when you
use Composer to upgrade your Drupal site. Occasionally, new dependency versions
introduce bugs in Drupal. While these sorts of errors are usually corrected
fairly quickly, it can still be quite disruptive to be one of the first people
encountering one of these bugs. Using the recommended dependencies avoids this
problem by only using dependency versions that have already been tested with
Drupal.## Upgrading
When using this project, upgrade your Drupal site as follows:
```
$ composer update drupal/core-recommended-dependencies --with-dependencies
```
This will update `drupal/core` and any needed dependencies.Running a simple `composer update` will also update `drupal/core`, all of
Drupal's dependencies (to the correct tested versions), and all of your
contrib modules and other dependencies.## References
This project is derived from the original community project
[webflo/drupal-core-strict](https://github.com/webflo/drupal-core-strict).
It was generated from tools derived from [webflo/package-generator-drupal](https://github.com/webflo/package-generator-drupal)
and [webflo/package-generator](https://github.com/webflo/package-generator).