Skip to content

Commit 26c90d0

Browse files
authored
Merge pull request #8 from patchlevel/upgrade-dependencies
upgrade php8.3 and dependencies
2 parents 7e4ec4d + 5cd69ac commit 26c90d0

File tree

15 files changed

+724
-724
lines changed

15 files changed

+724
-724
lines changed

.github/workflows/backward-compatibility-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
dependencies:
1717
- "locked"
1818
php-version:
19-
- "8.2"
19+
- "8.3"
2020
operating-system:
2121
- "ubuntu-latest"
2222

.github/workflows/coding-standard.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: "Check Coding Standard"
44

55
on:
66
pull_request:
7-
branches-ignore:
8-
- "[0-9]+.[0-9]+.x"
9-
- "renovate/*"
107
push:
118
branches:
129
- "[0-9]+.[0-9]+.x"
@@ -23,7 +20,7 @@ jobs:
2320
dependencies:
2421
- "locked"
2522
php-version:
26-
- "8.2"
23+
- "8.3"
2724
operating-system:
2825
- "ubuntu-latest"
2926

.github/workflows/mutation-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: "Mutation tests"
44

55
on:
66
pull_request:
7-
branches-ignore:
8-
- "[0-9]+.[0-9]+.x"
9-
- "renovate/*"
107
push:
118
branches:
129
- "[0-9]+.[0-9]+.x"
@@ -23,7 +20,7 @@ jobs:
2320
dependencies:
2421
- "locked"
2522
php-version:
26-
- "8.2"
23+
- "8.3"
2724
operating-system:
2825
- "ubuntu-latest"
2926

.github/workflows/phpstan.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: "Static Analysis by PHPStan"
44

55
on:
66
pull_request:
7-
branches-ignore:
8-
- "[0-9]+.[0-9]+.x"
9-
- "renovate/*"
107
push:
118
branches:
129
- "[0-9]+.[0-9]+.x"
@@ -23,7 +20,7 @@ jobs:
2320
dependencies:
2421
- "locked"
2522
php-version:
26-
- "8.2"
23+
- "8.3"
2724
operating-system:
2825
- "ubuntu-latest"
2926

.github/workflows/psalm.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: "Static Analysis by Psalm"
44

55
on:
66
pull_request:
7-
branches-ignore:
8-
- "[0-9]+.[0-9]+.x"
9-
- "renovate/*"
107
push:
118
branches:
129
- "[0-9]+.[0-9]+.x"
@@ -23,7 +20,7 @@ jobs:
2320
dependencies:
2421
- "locked"
2522
php-version:
26-
- "8.2"
23+
- "8.3"
2724
operating-system:
2825
- "ubuntu-latest"
2926

.github/workflows/unit.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: "Unit tests"
44

55
on:
66
pull_request:
7-
branches-ignore:
8-
- "[0-9]+.[0-9]+.x"
9-
- "renovate/*"
107
push:
118
branches:
129
- "[0-9]+.[0-9]+.x"
@@ -26,14 +23,15 @@ jobs:
2623
php-version:
2724
- "8.1"
2825
- "8.2"
26+
- "8.3"
2927
operating-system:
3028
- "ubuntu-latest"
3129
include:
3230
- dependencies: "locked"
33-
php-version: "8.2"
31+
php-version: "8.3"
3432
operating-system: "ubuntu-latest"
3533
- dependencies: "locked"
36-
php-version: "8.2"
34+
php-version: "8.3"
3735
operating-system: "windows-latest"
3836

3937
steps:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
vendor/
22
coverage/
33
phpunit.xml
4-
.phpunit.result.cache
4+
.phpunit.cache
55
.phpcs-cache
66
phpstan.neon
77
infection.log

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ psalm-baseline: vendor
3030

3131
.PHONY: phpunit
3232
phpunit: vendor ## run phpunit tests
33-
vendor/bin/phpunit --colors=always -v
33+
XDEBUG_MODE=coverage vendor/bin/phpunit
3434

3535
.PHONY: infection
3636
infection: vendor ## run infection

README.md

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

66
# Worker
77

8-
With this library you can hydrate objects from array into objects and back again.
8+
Gives the opportunity to build a stable worker that terminates properly when limits are exceeded.
99
It has now been outsourced by the [event-sourcing](https://github.com/patchlevel/event-sourcing) library as a separate library.
1010

1111
## Installation

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "patchlevel/worker",
33
"type": "library",
44
"license": "MIT",
5-
"description": "Worker",
5+
"description": "Gives the opportunity to build a stable worker that terminates properly when limits are exceeded.",
66
"keywords": [
77
"console",
88
"worker"
@@ -19,21 +19,21 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.1.0 || ~8.2.0",
23-
"symfony/event-dispatcher": "^5.4.0|^6.0.1"
22+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
23+
"symfony/event-dispatcher": "^5.4.26|^6.4.0|^7.0.0"
2424
},
2525
"require-dev": {
26-
"cspray/phinal": "^2.0",
27-
"infection/infection": "^0.26.19",
28-
"patchlevel/coding-standard": "^1.2.0",
29-
"phpbench/phpbench": "^1.2.8",
30-
"phpspec/prophecy-phpunit": "^2.0.1",
31-
"phpstan/phpstan": "^1.10.3",
32-
"phpunit/phpunit": "^9.6.4",
26+
"cspray/phinal": "^2.0.0",
27+
"infection/infection": "^0.27.8",
28+
"patchlevel/coding-standard": "^1.3.0",
29+
"phpbench/phpbench": "^1.2.15",
30+
"phpspec/prophecy-phpunit": "^2.1.0",
31+
"phpstan/phpstan": "^1.10.49",
32+
"phpunit/phpunit": "^10.5.2",
3333
"psalm/plugin-phpunit": "^0.18.4",
34-
"roave/infection-static-analysis-plugin": "^1.29.0",
35-
"symfony/var-dumper": "^5.4.1|^6.0.1",
36-
"vimeo/psalm": "^5.7.7"
34+
"roave/infection-static-analysis-plugin": "^1.34.0",
35+
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
36+
"vimeo/psalm": "^5.17.0"
3737
},
3838
"config": {
3939
"preferred-install": {

0 commit comments

Comments
 (0)