greg-1-anderson / drupal-drupal-composer
Project template for Drupal 8 projects with composer following drupal/drupal layout
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Language:Shell
Type:project
Requires
- php: >=5.6
- composer/installers: ^1.2
- drupal/core-composer-scaffold: 8.8.x-dev
- drupal/core-recommended: ^8.7
- drupal/core-vendor-hardening: 8.8.x-dev
Requires (Dev)
Conflicts
This package is auto-updated.
Last update: 2024-10-21 21:06:19 UTC
README
THIS IS A DEMONSTRATION AND WILL NOT BE MAINTAINED. DO NOT USE.
This is a project template for Drupal 8 projects with composer following the drupal/drupal layout. The goal of this project is to try out various things prior to making a patch with similar behavior for Drupal Core.
This project is similar to drupal-composer/drupal-project, except it does not have a relocated document root. The Drupal root is installed at the project root, just like the drupal/drupal project. The intention is that this layout will be used by the Drupal.org infrastructure to create the Drupal tarballs for download. The benefit of doing it this way is that users will be able to take ownership of the composer.json
file at the project root. Immediately after untaring Drupal, composer require
may be used to add modules and themes to Drupal, and composer update
may be used in the future to update Drupal Core, and the site's contrib modules.
This project is based on drupal-project-legacy, and should be re-joined with that project once the Scaffold plugin patch is merged.
Usage
$ git clone git@github.com:greg-1-anderson/drupal-drupal-composer.git
$ cd drupal-drupal-composer
$ composer install
$ ./vendor/bin/drush si --db-url=mysql://root@127.0.0.1/exampledb --site-name=Example
Feature comparison with drupal-composer/drupal-project
This project is using the experimental 8.8.x branch of drupal/drupal-scaffold. This project is based on drupal-composer/drupal-scaffold, but with some additions and removals.
New Features
- Instead of encoding the list of scaffold files in the scaffold tool, or the root project's composer.json file, individual dependencies (e.g. drupal/core) may declare the scaffold files that should be placed, and where they should go in the target site.
- Instead of downloading each scaffold file individually from drupal.org, files are copied from the project that contains them. This should significantly reduce the load placed on drupal.org when a new Drupal version comes out.
- Scaffold files may now be prepended or appended to via directives in profiles (which may also provide scaffold files) or the top-level project composer.json file.
Feature Comparison
- Create modules, profiles and themes directories.
- Create an initial settings.php file.
- Include and configure cweagans/composer-patches.
- Include Drush and Drupal Console.
- Create an initial files directory.
- Custom environment variable definition via .env files using vlucas/phpdotenv.
- Include example Drush configuration files.
-
Create a random config sync directory name prior to installing. -
Ensure that Composer is at version 1.0.0 or later.
In the list above, checked items are features of drupal-composer/drupal-project also implemented here. Italic items were implemented here in a previous revision, but have been backed out to make the results of this project more in line with a drupal/drupal tarball. Plain text items could be added to this project, or a derivative project. Strikethough items are probably not necessary.