Skip to content

Commit 920a732

Browse files
authored
Merge pull request #147 from patchlevel/fix-lock-add-contrib-notes
2 parents cec72c5 + ce3eff9 commit 920a732

File tree

10 files changed

+50
-51
lines changed

10 files changed

+50
-51
lines changed

.github/workflows/benchmark.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.4"
19+
- "8.5"
2020
operating-system:
2121
- "ubuntu-latest"
2222

.github/workflows/coding-standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/mutation-tests-diff.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.4"
19+
- "8.5"
2020
operating-system:
2121
- "ubuntu-latest"
2222

.github/workflows/mutation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
- "ubuntu-latest"
2929
include:
3030
- dependencies: "locked"
31-
php-version: "8.4"
31+
php-version: "8.5"
3232
operating-system: "ubuntu-latest"
3333
- dependencies: "locked"
34-
php-version: "8.4"
34+
php-version: "8.5"
3535
operating-system: "windows-latest"
3636
- dependencies: "lowest"
3737
php-version: "8.5"

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -694,3 +694,11 @@ To remove personal data, you need only remove the key from the store.
694694
```php
695695
$cipherKeyStore->remove('foo-id');
696696
```
697+
698+
699+
## Contributing
700+
701+
We are open to contributions as long as they are in line with
702+
our [BC-Policy](https://event-sourcing.patchlevel.io/latest/our-backward-compatibility-promise/).
703+
704+
Also note that the `composer.lock` is always generated with the newest supported PHP version as this is the version our tools run in the CI.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"symfony/type-info": "^7.3.0 || ^8.0.0"
2828
},
2929
"require-dev": {
30-
"infection/infection": "^0.32.0",
30+
"infection/infection": "^0.32.4",
3131
"patchlevel/coding-standard": "^1.3.0",
32-
"phpat/phpat": "^0.12.0",
33-
"phpbench/phpbench": "^1.2.15",
34-
"phpstan/phpstan": "^2.1.32",
35-
"phpstan/phpstan-phpunit": "^2.0.8",
36-
"phpunit/phpunit": "^11.5.17",
32+
"phpat/phpat": "^0.12.2",
33+
"phpbench/phpbench": "^1.4.3",
34+
"phpstan/phpstan": "^2.1.39",
35+
"phpstan/phpstan-phpunit": "^2.0.15",
36+
"phpunit/phpunit": "^11.5.53",
3737
"symfony/var-dumper": "^5.4.29 || ^6.4.0 || ^7.0.0 || ^8.0.0"
3838
},
3939
"config": {

composer.lock

Lines changed: 29 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan-baseline.neon

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,6 @@ parameters:
162162
count: 2
163163
path: tests/Unit/Normalizer/ArrayNormalizerTest.php
164164

165-
-
166-
message: '#^Parameter \#1 \$normalizer of class Patchlevel\\Hydrator\\Normalizer\\ArrayNormalizer constructor expects Patchlevel\\Hydrator\\Normalizer\\Normalizer, PHPUnit\\Framework\\MockObject\\MockObject given\.$#'
167-
identifier: argument.type
168-
count: 1
169-
path: tests/Unit/Normalizer/ArrayNormalizerTest.php
170-
171165
-
172166
message: '#^Cannot cast mixed to int\.$#'
173167
identifier: cast.int
@@ -179,9 +173,3 @@ parameters:
179173
identifier: cast.string
180174
count: 2
181175
path: tests/Unit/Normalizer/ArrayShapeNormalizerTest.php
182-
183-
-
184-
message: '#^Parameter \#1 \$normalizerMap of class Patchlevel\\Hydrator\\Normalizer\\ArrayShapeNormalizer constructor expects array\<Patchlevel\\Hydrator\\Normalizer\\Normalizer\>, array\<string, PHPUnit\\Framework\\MockObject\\MockObject\> given\.$#'
185-
identifier: argument.type
186-
count: 1
187-
path: tests/Unit/Normalizer/ArrayShapeNormalizerTest.php

0 commit comments

Comments
 (0)