Skip to content

Commit 069fb88

Browse files
Merge pull request #40 from mkoprek/add_support_for_php_85
Add support for PHP 8.5
2 parents 63544fc + 4505867 commit 069fb88

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/full-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- "8.2"
2727
- "8.3"
2828
- "8.4"
29+
- "8.5"
2930
operating-system:
3031
- "ubuntu-22.04"
3132

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ vendor/
44
Vagrantfile
55
.phpunit.cache
66
.php-cs-fixer.cache
7+
composer.lock
78

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"keywords": ["static analysis", "phpstan", "namespace visibility attribute", "friend attribute"],
55
"type": "phpstan-extension",
66
"require": {
7-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
7+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
88
"phpstan/phpstan": "^1.12.15 || ^2.0",
9-
"dave-liddament/php-language-extensions": "^0.8.0 || ^0.9.0"
9+
"dave-liddament/php-language-extensions": "^0.8.0 || ^0.9.0 || ^0.10.0"
1010
},
1111
"require-dev": {
1212
"phpunit/phpunit": "^9.6.12",
1313
"friendsofphp/php-cs-fixer": "^3.26.1",
1414
"php-parallel-lint/php-parallel-lint": "^1.3.2",
15-
"dave-liddament/phpstan-rule-test-helper": "^0.5.0",
15+
"dave-liddament/phpstan-rule-test-helper": "^0.5.0 || ^0.6.0",
1616
"nette/neon": "^3.4"
1717
},
1818
"license": "MIT",

0 commit comments

Comments
 (0)