Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shahinam/shade-project

Composer installer for Shade Drupal distribution.
https://github.com/shahinam/shade-project

drupal-8 drupal-profile

Last synced: about 1 month ago
JSON representation

Composer installer for Shade Drupal distribution.

Awesome Lists containing this project

README

        

# Drupal Shade

This is a Composer-based installer for the [Shade](https://www.drupal.org/project/shade) Drupal distribution.

## Usage
```
$ composer create-project shahinam/shade-project MY_PROJECT
```

## Basic composer usage
### Install a module
```
composer require drupal/
```
Examples
```
composer require drupal/devel
composer require drupal/ctools
```

This will install latest available version. If you want to specify a version
```
composer require drupal/:
```

### Update a module
```
composer update drupal/
```