Skip to content

Commit

Permalink
Allow installing under PHP8.3, also allow installing 2 newer versions…
Browse files Browse the repository at this point in the history
… of dependencies that would be required for php8.3.
  • Loading branch information
doppynl committed Dec 11, 2023
1 parent 101e438 commit 45b2d88
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
1 change: 1 addition & 0 deletions .github/workflows/full-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-22.04"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PHPStan PHP Language Extensions (currently in BETA)

[![PHP versions: 8.0 to 8.2](https://img.shields.io/badge/php-8.0|8.1|8.2-blue.svg)](https://packagist.org/packages/dave-liddament/phpstan-php-language-extensions)
[![PHP versions: 8.0 to 8.3](https://img.shields.io/badge/php-8.0|8.1|8.|8.3-blue.svg)](https://packagist.org/packages/dave-liddament/phpstan-php-language-extensions)
[![Latest Stable Version](https://poser.pugx.org/dave-liddament/phphstan-php-language-extensions/v/stable)](https://packagist.org/packages/dave-liddament/phpstan-php-language-extensions)
[![License](https://poser.pugx.org/dave-liddament/phpstan-php-language-extensions/license)](https://github.com/DaveLiddament/phpstan-php-language-extensions/blob/main/LICENSE.md)
[![Total Downloads](https://poser.pugx.org/dave-liddament/phpstan-php-language-extensions/downloads)](https://packagist.org/packages/dave-liddament/phpstan-php-language-extensions/stats)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"keywords": ["static analysis", "phpstan", "package attribute", "friend attribute"],
"type": "phpstan-extension",
"require": {
"php": ">=8.0 <8.3",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"phpstan/phpstan": "^1.10.34",
"dave-liddament/php-language-extensions": "^0.5.0"
"dave-liddament/php-language-extensions": "^0.5.0 || ^0.6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.12",
"friendsofphp/php-cs-fixer": "^3.26.1",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"dave-liddament/phpstan-rule-test-helper": "^0.1.0"
"dave-liddament/phpstan-rule-test-helper": "^0.1.0 || ^0.2.0"
},
"license": "MIT",
"autoload": {
Expand Down
36 changes: 18 additions & 18 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 45b2d88

Please sign in to comment.