Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Support 2.0 beta releases
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMaximov committed Nov 19, 2018
1 parent a402395 commit e4b9020
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,48 @@ If you do not have [Composer](http://getcomposer.org/), you may install it by fo
#### Latest STABLE version
```
composer create-project ymcatwincities/openy-project MY_PROJECT --no-interaction --no-dev
cd MY_PROJECT && composer update
```

This command will build project based on [**latest stable**](https://github.com/ymcatwincities/openy/releases) release.

#### Latest DEVELOPMENT version
#### Latest 2.0 BETA version
```
composer create-project ymcatwincities/openy-project:8.2.x-dev MY_PROJECT --no-interaction --no-dev
cd MY_PROJECT && composer update
```

This command will build project based on [**latest 8.2 beta**](https://github.com/ymcatwincities/openy/releases) release.

#### Latest DEVELOPMENT version (1.x)
```
composer create-project ymcatwincities/openy-project:8.1.x-development-dev MY_PROJECT --no-interaction --no-dev
cd MY_PROJECT && composer update
```

This command will build project based on [**latest development**](https://github.com/ymcatwincities/openy/commits/8.x-1.x) release.

#### Latest DEVELOPMENT version (2.x)
```
composer create-project ymcatwincities/openy-project:8.2.x-development-dev MY_PROJECT --no-interaction --no-dev
cd MY_PROJECT && composer update
```

This command will build project based on the [**development branch**](https://github.com/ymcatwincities/openy/commits/8.x-2.x) release.

## Development environment

You should use composer command without `--no-dev` if you would like to get environment that was configured especially for OpenY. So it should look like this:
```
composer create-project ymcatwincities/openy-project:8.1.x-development-dev MY_PROJECT --no-interaction
cd MY_PROJECT && composer update
```

or (for Open Y 2.0)

```
composer create-project ymcatwincities/openy-project:8.2.x-development-dev MY_PROJECT --no-interaction
cd MY_PROJECT && composer update
```

### CIBox VM
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "project",
"license": "GPL-2.0+",
"require": {
"ymcatwincities/openy": "8.*.*",
"ymcatwincities/openy": "8.2.*",
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.2",
"cweagans/composer-patches": "~1.0"
Expand Down

0 comments on commit e4b9020

Please sign in to comment.