Skip to content
Merged
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.1.1 Under development

- Enh #132: Implement RoadRunner stack (@terabytesoftw)
- Bug #140: Move badges for latest stable version and total downloads in `README.md` to `Installation` section (@terabytesoftw)
- Bug #142: Update installation instructions to use `dev-road-runner` in docs, remove `extra.branch-alias` from `composer.json` (@terabytesoftw)

## 0.1.0 August 31, 2025

- Initial release
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,12 @@ The Yii2 Web Application Basic template provides a complete foundation for build

### Installation

[![Latest Dev Version](https://img.shields.io/badge/Dev-road--runner-orange?style=for-the-badge&logo=packagist&logoColor=white)](https://packagist.org/packages/yii2-extensions/app-basic#dev-road-runner)

**Quick start**

```bash
composer create-project --prefer-dist --stability=dev yii2-extensions/app-basic:dev-road-runner app-basic
composer create-project --prefer-dist yii2-extensions/app-basic:dev-road-runner app-basic
cd app-basic
```

Expand Down Expand Up @@ -144,7 +146,6 @@ final class SiteController extends Controller
```
## Quality code

[![Latest Stable Version](https://img.shields.io/packagist/v/yii2-extensions/app-basic.svg?branch=road-runner&style=for-the-badge&logo=packagist&logoColor=white&label=Stable)](https://packagist.org/packages/yii2-extensions/app-basic#dev-road-runner)
[![Codecov](https://img.shields.io/codecov/c/github/yii2-extensions/app-basic.svg?branch=road-runner&style=for-the-badge&logo=codecov&logoColor=white&label=Coverage)](https://app.codecov.io/github/yii2-extensions/app-basic/tree/road-runner)
[![PHPStan Level Max](https://img.shields.io/badge/PHPStan-Level%20Max-4F5D95.svg?style=for-the-badge&logo=php&logoColor=white)](https://github.com/yii2-extensions/app-basic/actions/workflows/static.yml?query=branch%3Aroad-runner)
[![StyleCI](https://img.shields.io/badge/StyleCI-Passed-44CC11.svg?branch=road-runner&style=for-the-badge&logo=styleci&logoColor=white)](https://github.styleci.io/repos/165419144?branch=road-runner)
Expand Down
5 changes: 0 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@
"bower-asset/yii2-pjax": "~2.0.1",
"bower-asset/bootstrap": "^5.2"
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
Create a new project using the Yii App Basic template.

```bash
composer create-project --prefer-dist yii2-extensions/app-basic:^0.1 app-basic
composer create-project --prefer-dist yii2-extensions/app-basic:dev-road-runner
cd app-basic
```

### Method 2: Manual installation

1. **Download the template**:
```bash
git clone --branch 0.1 https://github.com/yii2-extensions/app-basic.git app-basic
git clone --branch dev-road-runner https://github.com/yii2-extensions/app-basic.git app-basic
cd app-basic
```

Expand All @@ -40,7 +40,7 @@ composer install
Clone the repository and set up your project.

```bash
git clone --branch 0.1 https://github.com/yii2-extensions/app-basic.git app-basic
git clone --branch dev-road-runner https://github.com/yii2-extensions/app-basic.git app-basic
cd app-basic
rm -rf .git
git init
Expand Down