Skip to content

Commit b1a0657

Browse files
authored
Update dependencies (#21)
1 parent 0f2b4b5 commit b1a0657

File tree

6 files changed

+14
-20
lines changed

6 files changed

+14
-20
lines changed

.github/workflows/dependencies.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
pull_request:
1111

1212
env:
13-
PHP_VERSION: 8.1
13+
PHP_VERSION: 8.3
1414

1515
jobs:
1616
composer-require-checker:
1717
name: Check missing composer requirements
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-latest
1919
steps:
2020
- uses: shivammathur/setup-php@v2
2121
with:
@@ -33,4 +33,4 @@ jobs:
3333
- run: |
3434
composer install --no-interaction --no-progress --ansi --no-scripts
3535
composer show
36-
- uses: docker://webfactory/composer-require-checker:3.2.0
36+
- uses: docker://ghcr.io/webfactory/composer-require-checker:4.12.0

.github/workflows/fix-cs-php.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: Coding Standards
1212
jobs:
1313
fix-cs-issues:
1414
name: PHP-CS-Fixer
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
if: github.actor != 'dependabot[bot]'
1717
steps:
1818
- name: Checkout code

.github/workflows/static-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ on:
1111
pull_request:
1212

1313
env:
14-
PHP_VERSION: 7.4
15-
PSALM_VERSION: 4.22.0
14+
PHP_VERSION: 8.3
15+
PSALM_VERSION: 5.25.0
1616

1717
jobs:
1818
Psalm:
1919
name: Psalm
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-latest
2121
steps:
2222
- uses: shivammathur/setup-php@v2
2323
with:

composer.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
],
1414

1515
"require": {
16-
"psr/log": "^1|^2|^3",
17-
"php": "^7.2|8.0.*|8.1.*|8.2.*|8.3.*"
16+
"php": "^7.2|8.0.*|8.1.*|8.2.*|8.3.*",
17+
"psr/log": "^1|^2|^3"
1818
},
1919

2020
"require-dev": {
21-
"phpunit/phpunit": "^8.5|^9.5",
21+
"phpunit/phpunit": "^8.5|^9.5|^10.5",
22+
"symfony/error-handler": "^5.4|^6.4|^7.1",
2223
"symfony/phpunit-bridge": ">= 6.0"
2324
},
2425

phpunit.xml.dist

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.5/phpunit.xsd"
5-
bootstrap="vendor/autoload.php" colors="true">
6-
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
73
<testsuites>
84
<testsuite name="Project Test Suite">
95
<directory>tests</directory>
106
</testsuite>
117
</testsuites>
12-
<listeners>
13-
<listener class="\Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
14-
</listeners>
158
</phpunit>

src/Synchronizer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private function fetchSourceId(object $sourceObject): int
100100
{
101101
$id = $this->mapper->idOf($sourceObject);
102102

103-
if ($this->lastSourceId && $id < $this->lastSourceId) {
103+
if (null !== $this->lastSourceId && $id < $this->lastSourceId) {
104104
throw new ContentMappingException('Source IDs are out of order');
105105
}
106106
$this->lastSourceId = $id;
@@ -115,7 +115,7 @@ private function fetchDestinationId(object $destinationObject): int
115115
{
116116
$id = $this->destination->idOf($destinationObject);
117117

118-
if ($this->lastDestinationId && $id < $this->lastDestinationId) {
118+
if (null !== $this->lastDestinationId && $id < $this->lastDestinationId) {
119119
throw new ContentMappingException('Destination IDs are out of order');
120120
}
121121
$this->lastDestinationId = $id;

0 commit comments

Comments
 (0)