Skip to content

Commit

Permalink
Merge pull request #63 from acelaya-forks/feature/php-8.3
Browse files Browse the repository at this point in the history
Remove support for PHP 8.1 and add support to PHP 8.3
  • Loading branch information
acelaya authored Nov 4, 2023
2 parents 6c5e42c + f401b50 commit d621b20
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 9 deletions.
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).

## [Unreleased]
### Added
* Add support for PHP 8.3

### Changed
* *Nothing*

### Deprecated
* *Nothing*

### Removed
* Drop support for PHP 8.1

### Fixed
* *Nothing*


## [5.1.0] - 2023-04-22
### Added
* Ensure CSVs generated by shlink-web-client are properly parsed.
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"laminas/laminas-servicemanager": "^3.20",
"league/csv": "^9.8",
"laminas/laminas-servicemanager": "^3.22",
"league/csv": "^9.11",
"lstrojny/functional-php": "^1.17",
"shlinkio/shlink-config": "^2.4",
"shlinkio/shlink-json": "^1.0",
"symfony/console": "^6.2"
"symfony/console": "^6.3"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"infection/infection": "^0.26.20",
"phpstan/phpstan": "^1.9",
"guzzlehttp/guzzle": "^7.8",
"infection/infection": "^0.27.7",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.1",
"phpunit/phpunit": "^10.4",
"psr/http-factory": "^1.0",
"roave/security-advisories": "dev-master",
"shlinkio/php-coding-standard": "~2.3.0",
"symfony/var-dumper": "^6.2"
"symfony/var-dumper": "^6.3"
},
"suggest": {
"psr/http-client": "If you want to be able to import URLs from Bit.ly, YOURLS, Kutt.it or another Shlink instance",
Expand Down

0 comments on commit d621b20

Please sign in to comment.