Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise the minimum PHP version #148

Merged
merged 3 commits into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- windows-latest

php:
- 7.4
- 8.0
- 8.1

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
- ubuntu-latest

php:
- 7.4
- 8.0
- 8.1

Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Yii Console Change Log

## 1.0.2 under development
## 2.0.0 under development

- no changes in this release.
- Chg #148: Raise the minimum PHP version to 8.0 (rustamwin)

## 1.0.1 February 11, 2022

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This Yii Framework package provides a console that could be added to an applicat

## Requirements

- PHP 7.4 or higher.
- PHP 8.0 or higher.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
"psr/container": "^1.0|^2.0",
"symfony/console": "^5.3|^6.0",
"symfony/event-dispatcher-contracts": "^2.2",
Expand Down