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: 2 additions & 0 deletions .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
skip = */tests/*,tests/**,*/composer.lock,*/composer.json
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
- Bug #223: Remove outdated composer asset dependencies from `package.json` (@terabytesoftw)
- Enh #229: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw)
- Bug #230: Add section for automated refactoring using `Rector` in testing documentation (@terabytesoftw)
- Enh #236: Add `.codespellrc` configuration to skip specific files and directories for spell checking (@terabytesoftw)
- Enh #237: Update PHP requirement to `8.2` in `composer.json` and adjust PHP versions in `build.yml` (@terabytesoftw)

## 0.1.2 October 8, 2025

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ final class SiteController extends Controller

## Package information

[![PHP](https://img.shields.io/badge/%3E%3D8.1-777BB4.svg?style=for-the-badge&logo=php&logoColor=white)](https://www.php.net/releases/8.1/en.php)
[![Yii 2.0.x](https://img.shields.io/badge/2.0.53-0073AA.svg?style=for-the-badge&logo=yii&logoColor=white)](https://github.com/yiisoft/yii2/tree/2.0.53)
[![PHP](https://img.shields.io/badge/%3E%3D8.2-777BB4.svg?style=for-the-badge&logo=php&logoColor=white)](https://www.php.net/releases/8.2/en.php)
[![Yii 2.0.x](https://img.shields.io/badge/2.0.54-0073AA.svg?style=for-the-badge&logo=yii&logoColor=white)](https://github.com/yiisoft/yii2/tree/2.0.54)
[![Yii 22.0.x](https://img.shields.io/badge/22.0.x-0073AA.svg?style=for-the-badge&logo=yii&logoColor=white)](https://github.com/yiisoft/yii2/tree/22.0)

## Quality code
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"minimum-stability": "dev",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"php": ">=8.2",
"php-forge/foxy": "^0.2",
"ui-awesome/html-svg": "^0.3",
"vlucas/phpdotenv": "^5.6",
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## System requirements

- [`PHP`](https://www.php.net/downloads) 8.1 or higher.
- [`PHP`](https://www.php.net/downloads) 8.2 or higher.
- [`Composer`](https://getcomposer.org/download/) for dependency management.
- [`npm`](https://nodejs.org/en/download/) for frontend dependency management.
- [`Yii2`](https://github.com/yiisoft/yii2) 2.0.53+ or 22.x.
- [`Yii2`](https://github.com/yiisoft/yii2) 2.0.54+ or 22.x.

### Optional requirements

Expand Down
Loading