Skip to content

Commit

Permalink
Allow PHP83
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed Nov 24, 2023
1 parent 04a7c63 commit 2efd1a2
Show file tree
Hide file tree
Showing 8 changed files with 2,659 additions and 1,673 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyzers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2']
php-versions: ['8.1', '8.2', '8.3']
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2']
php-versions: ['8.1', '8.2', '8.3']
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2']
php-versions: ['8.1', '8.2', '8.3']
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .phive/phars.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="phpunit" version="^9.5.23" installed="9.5.28" location="./tools/phpunit.phar" copy="true"/>
<phar name="php-cs-fixer" version="^3.13.0" installed="3.14.3" location="./tools/php-cs-fixer.phar" copy="true"/>
<phar name="phpunit" version="^9.5.23" installed="9.6.13" location="./tools/phpunit.phar" copy="true"/>
<phar name="php-cs-fixer" version="^3.13.0" installed="3.39.0" location="./tools/php-cs-fixer.phar" copy="true"/>
</phive>
12 changes: 3 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,16 @@
}
},
"require": {
"php": "^8.1",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-dom": "*",
"goetas-webservices/xsd-reader": "^0.4.1",
"php-soap/engine": "^2.4",
"php-soap/wsdl": "^1.4",
"veewee/xml": "^2.6",
"azjezz/psl": "^2.4",
"symfony/console": "^6.2"
"symfony/console": "^6.2 || ^7.0"
},
"require-dev": {
"veewee/composer-run-parallel": "^1.2",
"symfony/var-dumper": "^6.1",
"php-soap/engine-integration-tests": "^1.5.0",
"psalm/plugin-symfony": "^5.0",
Expand All @@ -36,10 +35,5 @@
"name": "Toon Verwerft",
"email": "toonverwerft@gmail.com"
}
],
"config": {
"allow-plugins": {
"veewee/composer-run-parallel": true
}
}
]
}
3 changes: 2 additions & 1 deletion src/Formatter/MetaTableFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use ReflectionProperty;
use Symfony\Component\Console\Helper\Table;
use Symfony\Component\Console\Output\OutputInterface;
use Throwable;
use function Psl\Vec\filter_nulls;
use function Psl\Vec\map;

Expand Down Expand Up @@ -59,7 +60,7 @@ private function tryStringifyValue(mixed $value): ?string
is_scalar($value) => (string)$value,
default => null,
};
} catch (\Throwable) {
} catch (Throwable) {
return null;
}
}
Expand Down
Binary file modified tools/php-cs-fixer.phar
Binary file not shown.
4,307 changes: 2,649 additions & 1,658 deletions tools/phpunit.phar

Large diffs are not rendered by default.

0 comments on commit 2efd1a2

Please sign in to comment.