Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/shahinam/shade-project
- Owner: shahinam
- License: mit
- Created: 2017-06-28T10:39:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T14:15:42.000Z (almost 7 years ago)
- Last Synced: 2024-03-19T15:09:26.061Z (9 months ago)
- Topics: drupal-8, drupal-profile
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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/
```