Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Change Log

## 0.1.0 Under development
## 0.1.0 August 31, 2025

- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ The Yii2 Web Application Basic template provides a complete foundation for build
**Quick start**

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"type": "project",
"description": "Web Application Basic",
"keywords": [
"yii2-extensions",
"application",
"basic",
"web",
"yii2"
"web"
],
"license": "BSD-3-Clause",
"require": {
Expand Down Expand Up @@ -57,7 +57,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
"dev-main": "0.2.x-dev"
}
},
"config": {
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 --stability=dev yii2-extensions/app-basic app-basic
composer create-project --prefer-dist yii2-extensions/app-basic:^0.1 app-basic
cd app-basic
```

### Method 2: Manual installation

1. **Download the template**:
```bash
git clone https://github.com/yii2-extensions/app-basic.git app-basic
git clone --branch 0.1 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 https://github.com/yii2-extensions/app-basic.git app-basic
git clone --branch 0.1 https://github.com/yii2-extensions/app-basic.git app-basic
cd app-basic
rm -rf .git
git init
Expand Down
Loading