Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
| datasource  | package                 | from    | to      |
| ----------- | ----------------------- | ------- | ------- |
| packagist   | phpstan/phpstan         | 2.1.6   | 2.1.7   |
| packagist   | phpunit/phpunit         | 11.5.10 | 11.5.12 |
| github-tags | ramsey/composer-install | 3.0.0   | 3.1.0   |
  • Loading branch information
renovate[bot] authored and kukulich committed Mar 7, 2025
1 parent b71ff2a commit 172996a
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 39 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -85,12 +85,12 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -126,12 +126,12 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -167,12 +167,12 @@ jobs:
ini-values: memory_limit=-1, zend.assertions=1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -212,12 +212,12 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

Expand Down Expand Up @@ -288,12 +288,12 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"

- name: "Install CI dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@3.0.0"
uses: "ramsey/composer-install@3.1.0"
with:
dependency-versions: "${{ matrix.dependencies }}"
working-directory: "tools"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"require-dev": {
"phpbench/phpbench": "^1.4.0",
"phpunit/phpunit": "^11.5.10"
"phpunit/phpunit": "^11.5.12"
},
"autoload": {
"psr-4": {
Expand Down
32 changes: 16 additions & 16 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Reflection/Adapter/ReflectionClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ final class ReflectionClass extends CoreReflectionClass

public function __construct(private BetterReflectionClass|BetterReflectionEnum $betterReflectionClass)
{
/** @phpstan-ignore unset.readOnlyPropertyByPhpDoc */
unset($this->name);
}

Expand Down
1 change: 1 addition & 0 deletions src/Reflection/Adapter/ReflectionEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ final class ReflectionEnum extends CoreReflectionEnum
{
public function __construct(private BetterReflectionEnum $betterReflectionEnum)
{
/** @phpstan-ignore unset.readOnlyPropertyByPhpDoc */
unset($this->name);
}

Expand Down
1 change: 1 addition & 0 deletions src/Reflection/Adapter/ReflectionObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ final class ReflectionObject extends CoreReflectionObject
{
public function __construct(private BetterReflectionObject $betterReflectionObject)
{
/** @phpstan-ignore unset.readOnlyPropertyByPhpDoc */
unset($this->name);
}

Expand Down
2 changes: 1 addition & 1 deletion tools/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"require": {
"doctrine/coding-standard": "^12.0.0",
"phpstan/phpstan": "^2.1.6",
"phpstan/phpstan": "^2.1.7",
"phpstan/phpstan-phpunit": "^2.0.4",
"vimeo/psalm": "^6.8.8",
"roave/backward-compatibility-check": "^8.13.0",
Expand Down
12 changes: 6 additions & 6 deletions tools/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 172996a

Please sign in to comment.