Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/backward-compatibility-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.3"
- "8.4"
operating-system:
- "ubuntu-latest"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"

Expand All @@ -31,7 +31,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@2.35.5"
with:
coverage: "pcov"
coverage: "none"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: pdo_sqlite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"

Expand All @@ -31,7 +31,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@2.35.5"
with:
coverage: "pcov"
coverage: "none"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: pdo_sqlite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
dependencies:
- "locked"
php-version:
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"

Expand All @@ -31,7 +31,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@2.35.5"
with:
coverage: "pcov"
coverage: "none"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: pdo_sqlite
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/psalm.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ jobs:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
operating-system:
- "ubuntu-latest"
include:
- dependencies: "locked"
php-version: "8.4"
php-version: "8.5"
operating-system: "ubuntu-latest"
- dependencies: "locked"
php-version: "8.4"
php-version: "8.5"
operating-system: "windows-latest"

steps:
Expand Down
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,11 @@ cs: vendor

.PHONY: phpstan
phpstan: vendor ## run phpstan static code analyser
vendor/bin/phpstan analyse
php -d memory_limit=512M vendor/bin/phpstan analyse

.PHONY: phpstan-baseline
phpstan-baseline: vendor ## run phpstan static code analyser
vendor/bin/phpstan analyse --generate-baseline

.PHONY: psalm
psalm: vendor ## run psalm static code analyser
vendor/bin/psalm

.PHONY: psalm-baseline
psalm-baseline: vendor ## run psalm static code analyser
vendor/bin/psalm --update-baseline --set-baseline=baseline.xml
php -d memory_limit=512M vendor/bin/phpstan analyse --generate-baseline

.PHONY: phpunit
phpunit: vendor ## run phpunit tests
Expand Down
9 changes: 0 additions & 9 deletions baseline.xml

This file was deleted.

19 changes: 8 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,17 @@
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"symfony/event-dispatcher": "^5.4.26|^6.4.0|^7.0.0"
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"symfony/event-dispatcher": "^6.4.0|^7.3.0|^8.0.0"
},
"require-dev": {
"infection/infection": "^0.29.10",
"infection/infection": "^0.31.9",
"patchlevel/coding-standard": "^1.3.0",
"phpbench/phpbench": "^1.2.15",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^2.1.2",
"phpunit/phpunit": "^11.5.3",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.34.0",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"vimeo/psalm": "^6.0.0"
"phpat/phpat": "^0.12.0",
"phpstan/phpstan": "^2.1.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5.17",
"symfony/var-dumper": "^6.4.0 || ^7.3.0 || ^8.0.0"
},
"config": {
"preferred-install": {
Expand Down
Loading