solsoft / drupal-boilerplate
Boilerplate for deploying new Drupal projects
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=5.5
- ext-ctype: *
- ext-date: *
- ext-dom: *
- ext-fileinfo: *
- ext-filter: *
- ext-gd: *
- ext-hash: *
- ext-json: *
- ext-pcre: *
- ext-pdo: *
- ext-session: *
- ext-spl: *
- ext-tokenizer: *
- boedah/robo-drush: ^3.0.2
- composer/installers: ^1.3
- consolidation/robo: ^1.0.6
- cweagans/composer-patches: ^1.6
- derhasi/composer-preserve-paths: ^0.1
- drupal-composer/drupal-scaffold: ^2.3
- drupal/core: ^8.3.2
- mnsami/composer-custom-directory-installer: ^1.1
- oomphinc/composer-installers-extender: ^1.1
- symfony/yaml: ^2.8
- webflo/drupal-finder: ^0.2.1
- wikimedia/composer-merge-plugin: ^1.4
Requires (Dev)
- drupal/coder: ^8.2.12
- drupal/console: ^1.0-rc19
- drush/drush: ^8.1.11
Suggests
- php: >=5.6, <7.0
- ext-curl: *
- ext-imagick: *
- ext-ldap: *
- ext-mysqli: *
- ext-openssl: *
- ext-pgsql: *
- ext-redis: *
- ext-simplexml: *
- ext-soap: *
- ext-sqlite3: *
- ext-ssh2: *
- ext-xdebug: *
- ext-xml: *
Conflicts
- drupal/core: 7.*
- drupal/drupal: 7.*
This package is not auto-updated.
Last update: 2025-03-30 05:48:17 UTC
README
Boilerplate for deploying new Drupal projects. Based on drupal-composer/drupal-project.
Using Composer and associated plugins, and the official packages.drupal.org repository.
Packages are published and updated regularly at Packagist.
Examples are provided for a series of modules and themes and are included in the composer create-project
process.
Drupal versions supported
- Drupal 8.0.x - 8.3.x
- Drupal 7.x
Drupal 7.x is being deployed with a Drupal 8 look alike directory structure, using davidbarratt/drupal-structure.
Development branches
- 8.x - development branch for the latest Drupal 8.3.x
- 7.x - development branch for the latest Drupal 7.x
Usage
Before starting, consult the Composer reference for standard usage instructions.
Use composer create-project
to deploy a new project, specifying one branch.
composer create-project solsoft/drupal-boilerplate:8.x-dev my-project --stability dev --no-interaction;
cd my-project;
composer update;
composer show;
composer site-install;
composer site-run;
Contributing
Clone the git repository pointing to one of the development branches.
Merge requests should be submitted against these branches.
git clone -b 8.x git@github.com:solsoft/drupal-boilerplate.git;
cd drupal-boilerplate;
composer install;
composer update;
composer show;
composer site-install;
composer site-run;
Extras
Optionally you may run composer examples-deploy
to install example Drupal
Contributed libraries, modules and themes example dependencies. These can
also be undeployed by running composer examples-undeploy
. See more
information about this in the config/composer.examples
directory.
Drush can be deployed locally by running composer drush-deploy
.
The project can be reset by running composer cleanup-project
to delete
the vendor/
, assets/
and app/
directories and the composer.lock
file.
Credits
See the composer README for information about composer packages.
Inspiration taken from drupal-composer/drupal-project.
Drupal Boilerplate
Copyright (C) 2016-2017 SOL-Soft
Luís Pedro Algarvio
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
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.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.