Skip to content

Commit 7d00bad

Browse files
committed
Bump dependencies
1 parent 682d7c8 commit 7d00bad

File tree

9 files changed

+21
-12
lines changed

9 files changed

+21
-12
lines changed

.github/workflows/analyzers.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2', '8.3']
10+
php-versions: ['8.2', '8.3', '8.4']
11+
composer-options: ['--ignore-platform-req=php+']
1112
fail-fast: false
1213
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1314
steps:

.github/workflows/code-style.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2', '8.3']
10+
php-versions: ['8.2', '8.3', '8.4']
11+
composer-options: ['--ignore-platform-req=php+']
1112
fail-fast: false
1213
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1314
steps:

.github/workflows/tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2', '8.3']
10+
php-versions: ['8.2', '8.3', '8.4']
11+
composer-options: ['--ignore-platform-req=php+']
1112
fail-fast: false
1213
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1314
steps:
@@ -20,6 +21,6 @@ jobs:
2021
tools: 'composer:v2'
2122
extensions: pcov, mbstring, posix, dom, soap
2223
- name: Install dependencies
23-
run: composer update --prefer-dist --no-progress --no-suggest
24+
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
2425
- name: Run the tests
2526
run: ./vendor/bin/phpunit

.phive/phars.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="php-cs-fixer" version="^3.13.0" installed="3.39.0" location="./tools/php-cs-fixer.phar" copy="true"/>
3+
<phar name="php-cs-fixer" version="^3.13.0" installed="3.64.0" location="./tools/php-cs-fixer.phar" copy="true"/>
44
</phive>

.php-cs-fixer.dist.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@
5353
'static_lambda' => true,
5454
'strict_comparison' => true,
5555
'strict_param' => true,
56+
'nullable_type_declaration_for_default_null_value' => true,
5657
])
5758
;

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
}
1616
],
1717
"require": {
18-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
19-
"azjezz/psl": "^2.5",
20-
"php-soap/xml": "^1.6.0"
18+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
19+
"azjezz/psl": "^3.0",
20+
"php-soap/xml": "^1.8.0"
2121
},
2222
"autoload-dev": {
2323
"psr-4": {
2424
"SoapTest\\Engine\\": "tests/"
2525
}
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "^9.5",
28+
"phpunit/phpunit": "^10.5",
2929
"php-standard-library/psalm-plugin": "^2.2",
30-
"vimeo/psalm": "^5.9"
30+
"vimeo/psalm": "^5.26"
3131
}
3232
}

phpunit.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
<phpunit bootstrap="./vendor/autoload.php" colors="true">
1+
<phpunit
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
displayDetailsOnPhpunitDeprecations="true"
5+
bootstrap="./vendor/autoload.php"
6+
colors="true">
27
<testsuites>
38
<testsuite name="Unit">
49
<directory>./tests/Unit</directory>

src/Exception/RuntimeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
abstract class RuntimeException extends \RuntimeException
1010
{
11-
protected function __construct(string $message = "", int $code = 0, Throwable $previous = null)
11+
protected function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
1212
{
1313
parent::__construct($message, $code, $previous);
1414
}

tools/php-cs-fixer.phar

456 KB
Binary file not shown.

0 commit comments

Comments
 (0)