An open API service indexing awesome lists of open source software.

https://github.com/thecodingmachine/drupal

This Composer package is an installer that will download Drupal from the http://drupal.org website and unpack it at the root of your Composer project.
https://github.com/thecodingmachine/drupal

Last synced: 11 months ago
JSON representation

This Composer package is an installer that will download Drupal from the http://drupal.org website and unpack it at the root of your Composer project.

Awesome Lists containing this project

README

          

Drupal installer
================

This is a simple Composer package that will install Drupal at the root of your Composer project.

Drupal is not directly contained in this project. It is downloaded from the drupal.org website.

Installing Drupal using this Composer package:
----------------------------------------------

Not used to Composer? The first step is installing Composer.
This is essentially a one line process:

```bash
curl -s https://getcomposer.org/installer | php
```

Windows users can download the phar file here: [http://getcomposer.org/download/](install composer).
Then create a *composer.json* file at the root of your project:

```json
{
"require": {
"thecodingmachine/drupal": "~7.23"
}
}
```

and finally, run

```bash
php composer.phar install
```

This will download and unpack the Drupal archive at the root of your project.
In this example, the version downloaded is 7.18 or greater, but lower than 8.0 (this is the meaning of the ~ just before the version number).

Find more:
----------

Want to learn more about this package? Check out the original blog post presenting *thecodingmachine/composer*