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

PHP 8.4 #325

Merged
merged 3 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: ["8.0", "8.1", "8.2", "8.3"]
php-versions: ["8.0", "8.1", "8.2", "8.3", "8.4"]
composer-args: ["", "--prefer-lowest"]
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.31.1
uses: shivammathur/setup-php@2.32.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Test
run: composer test-with-coverage
- name: Upload Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
with:
files: ./clover.xml
verbose: true
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"license": "BSD-3-Clause",
"prefer-stable": true,
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"diablomedia/zendframework1-exception": "^1.1.1",
"diablomedia/zendframework1-xml": "^1.0.5",
"diablomedia/zendframework1-server": "^1.0.5"
Expand All @@ -30,8 +30,8 @@
},
"require-dev": {
"phpunit/phpunit": "^9.6.19 || ^10.5.18",
"phpstan/phpstan": "1.12.7",
"friendsofphp/php-cs-fixer": "3.55.0",
"phpstan/phpstan": "2.1.1",
"friendsofphp/php-cs-fixer": "3.67.0",
"maglnet/composer-require-checker": "^3.0.0",
"phpro/grumphp-shim": "^2.0.0"
},
Expand Down
3 changes: 3 additions & 0 deletions grumphp.yml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# grumphp.yml
grumphp:
environment:
variables:
PHP_CS_FIXER_IGNORE_ENV: "true"
tasks:
composer:
strict: true
Expand Down
12 changes: 5 additions & 7 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
parameters:
level: 4
treatPhpDocTypesAsCertain: false
paths:
- ./
excludePaths:
Expand All @@ -8,11 +9,8 @@ parameters:
ignoreErrors:
# Method will exit if $method isn't defined (via a $found boolean in a loop)
- '#Variable \$method might not be defined\.#'
# I think most of these null checks are unnecessary, but the return types may need null added if the property is never initialized
- '#Strict comparison using === between null and Zend_Json_Server_Request will always evaluate to false\.#'
- '#Strict comparison using === between null and Zend_Json_Server_Response will always evaluate to false\.#'
- '#Strict comparison using === between null and string will always evaluate to false\.#'
# Defensive coding where these can't be enforced by php type-hints
-
message: '#Result of && is always false\.#'
path: %currentWorkingDirectory%/src/Zend/Json/Server.php
message: '#^Parameter &\$value by\-ref type of method Zend_Json\:\:_recursiveJsonExprFinder\(\) expects iterable\|Zend_Json_Expr, string given\.$#'
identifier: parameterByRef.type
count: 1
path: src/Zend/Json.php
2 changes: 1 addition & 1 deletion src/Zend/Json/Decoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ protected function _getNextToken()
case ':':
$this->_token = self::COLON;
break;
case '"':
case '"':
$result = '';
do {
$i++;
Expand Down
Loading