Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release 5.10.0 into 6.0.x #1199

Merged
merged 31 commits into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a1c16b1
Bump sebastian/type from 3.0.0 to 3.1.0
dependabot[bot] Aug 29, 2022
ffcc285
Bump roave/infection-static-analysis-plugin from 1.21.0 to 1.22.0
dependabot[bot] Aug 29, 2022
a522795
Bump sebastian/type from 3.0.0 to 3.1.0
github-actions[bot] Aug 29, 2022
6bae0e5
Bump roave/infection-static-analysis-plugin from 1.21.0 to 1.22.0
github-actions[bot] Aug 29, 2022
f5c6736
Bump phpunit/php-code-coverage from 9.2.16 to 9.2.17
dependabot[bot] Aug 30, 2022
ca24c54
Bump phpunit/phpunit from 9.5.23 to 9.5.24
dependabot[bot] Aug 30, 2022
6e21881
Bump phpunit/php-code-coverage from 9.2.16 to 9.2.17
github-actions[bot] Aug 30, 2022
b02c2a8
Bump phpunit/phpunit from 9.5.23 to 9.5.24
github-actions[bot] Aug 30, 2022
06c5642
Bump phpstan/phpstan from 1.8.2 to 1.8.3
dependabot[bot] Sep 1, 2022
13ac1e8
Bump phpstan/phpstan from 1.8.2 to 1.8.3
github-actions[bot] Sep 1, 2022
ecbe139
Bump vimeo/psalm from 4.26.0 to 4.27.0
dependabot[bot] Sep 2, 2022
f1bc9ce
Bump vimeo/psalm from 4.26.0 to 4.27.0
github-actions[bot] Sep 2, 2022
18ced7c
Bump phpstan/phpstan from 1.8.3 to 1.8.4
dependabot[bot] Sep 5, 2022
d8f3b13
Merge pull request #1189 from Roave/dependabot/composer/phpstan/phpst…
Ocramius Sep 5, 2022
c59a2ee
Bump nikic/php-parser from 4.14.0 to 4.15.1
dependabot[bot] Sep 5, 2022
32156af
Bump nikic/php-parser from 4.14.0 to 4.15.1
github-actions[bot] Sep 5, 2022
ac17de6
PHP 8.2: Support for readonly classes
kukulich Sep 6, 2022
0ac9954
Merge pull request #1192 from kukulich/readonly-classes
Ocramius Sep 6, 2022
bca4c45
Bump roave/signature from 1.5.0 to 1.6.0
dependabot[bot] Sep 6, 2022
338eaa8
Merge pull request #1193 from Roave/dependabot/composer/roave/signatu…
Ocramius Sep 6, 2022
d8e8cac
Bump roave/infection-static-analysis-plugin from 1.22.0 to 1.23.0
dependabot[bot] Sep 6, 2022
0beeb5a
Bump roave/infection-static-analysis-plugin from 1.22.0 to 1.23.0
github-actions[bot] Sep 6, 2022
83357ae
Bump phpstan/phpstan from 1.8.4 to 1.8.5
dependabot[bot] Sep 7, 2022
60aebc1
Bump phpstan/phpstan from 1.8.4 to 1.8.5
github-actions[bot] Sep 7, 2022
64f4f1f
PHP 8.2: Support for fetch properties of enums in const expressions
kukulich Sep 8, 2022
1cac67a
PHP 8.2: Support for standalone null type
kukulich Sep 8, 2022
2ead298
CS
kukulich Sep 8, 2022
59d320b
ReflectionType should never produce nullable mixed
kukulich Sep 8, 2022
8974209
ReflectionNamedType adapter supports standalone null type
kukulich Sep 8, 2022
6f2ea9e
Merge pull request #1197 from kukulich/null
Ocramius Sep 10, 2022
2658607
Merge pull request #1196 from kukulich/fetch-enum-property
Ocramius Sep 10, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"php": "~8.0.12 || ~8.1.0",
"ext-json": "*",
"jetbrains/phpstorm-stubs": "2022.2",
"nikic/php-parser": "^4.14.0",
"roave/signature": "^1.5"
"nikic/php-parser": "^4.15.1",
"roave/signature": "^1.6"
},
"authors": [
{
Expand All @@ -34,11 +34,11 @@
],
"require-dev": {
"doctrine/coding-standard": "^10.0.0",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan": "^1.8.5",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^9.5.23",
"vimeo/psalm": "^4.26",
"roave/infection-static-analysis-plugin": "^1.21.0"
"phpunit/phpunit": "^9.5.24",
"vimeo/psalm": "^4.27",
"roave/infection-static-analysis-plugin": "^1.23.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading