Skip to content

Commit

Permalink
Merge pull request shlinkio#25 from acelaya-forks/feature/drop-php8
Browse files Browse the repository at this point in the history
Dropped support for PHP 8.0
  • Loading branch information
acelaya authored Aug 7, 2022
2 parents 150de35 + 1ac289c commit 84d8dd2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: ['8.0', '8.1']
php-version: ['8.1']
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -25,10 +25,10 @@ jobs:
- run: composer cs

static-analysis:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: ['8.0', '8.1']
php-version: ['8.1']
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).

## [3.1.0] - 2022-08-07
### Added
* *Nothing*

### Changed
* *Nothing*

### Deprecated
* *Nothing*

### Removed
* Dropped support for PHP 8.0

### Fixed
* *Nothing*


## [3.0.1] - 2022-04-09
### Added
* *Nothing*
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.1",
"ext-json": "*",
"doctrine/data-fixtures": "^1.5",
"doctrine/orm": "^2.9",
"fig/http-message-util": "^1.1",
"guzzlehttp/guzzle": "^7.4",
"phpunit/phpunit": "^9.5",
"symfony/process": "^6.0"
"symfony/process": "^6.1"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"roave/security-advisories": "dev-master",
"shlinkio/php-coding-standard": "~2.2.0"
"shlinkio/php-coding-standard": "~2.3.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 84d8dd2

Please sign in to comment.