Skip to content

Commit bf4db32

Browse files
committed
Support Symfony ^8.0
1 parent fcbc4a3 commit bf4db32

4 files changed

Lines changed: 21 additions & 13 deletions

File tree

.github/workflows/master.yml

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
- '8.1'
1515
- '8.2'
1616
- '8.3'
17+
- '8.4'
18+
- '8.5'
1719
steps:
1820
- uses: actions/checkout@v2
1921
with:

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88

9-
## [Unreleased](https://github.com/inspirum/balikobot-php-symfony/compare/v1.3.0...master)
9+
## [Unreleased](https://github.com/inspirum/balikobot-php-symfony/compare/v1.4.0...master)
10+
11+
12+
## [v1.4.0 (2024-04-21)](https://github.com/inspirum/balikobot-php-symfony/compare/v1.3.0...v1.4.0)
13+
### Added
14+
- Support [`inspirum/balikobot`](https://github.com/inspirum/balikobot-php) `^7.6` for Symfony `^6.4 || ^7.4 || ^8.0`
1015

1116

1217
## [v1.3.0 (2024-04-21)](https://github.com/inspirum/balikobot-php-symfony/compare/v1.2.0...v1.3.0)

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@
2020
"require": {
2121
"php": "^8.1",
2222
"inspirum/balikobot": "^7.6",
23-
"symfony/config": "^6.1 || ^7.0",
24-
"symfony/dependency-injection": "^6.1 || ^7.0",
25-
"symfony/http-kernel": "^6.1 || ^7.0"
23+
"symfony/config": "^6.14 || ^7.4 || ^8.0",
24+
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
25+
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0"
2626
},
2727
"require-dev": {
28-
"inspirum/coding-standard": "^1.5",
29-
"phpstan/phpstan": "^1.10",
30-
"phpunit/phpunit": "^10.5",
31-
"shipmonk/composer-dependency-analyser": "^1.5",
32-
"squizlabs/php_codesniffer": "^3.9",
33-
"symfony/filesystem": "^6.1 || ^7.0",
34-
"symfony/yaml": "^6.1 || ^7.0"
28+
"inspirum/coding-standard": "^1.8",
29+
"phpstan/phpstan": "^2.1",
30+
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.5 || ^13.0",
31+
"shipmonk/composer-dependency-analyser": "^1.8",
32+
"symfony/filesystem": "^6.4 || ^7.4 || ^8.0",
33+
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
3534
},
3635
"autoload": {
3736
"psr-4": {
@@ -60,7 +59,7 @@
6059
"@test:unit"
6160
],
6261
"test:unit": [
63-
"@phpunit --testsuite=Unit"
62+
"@phpunit --testsuite=Unit --no-coverage"
6463
],
6564
"test:coverage": [
6665
"@phpunit --coverage-text --coverage-html=var/phpunit/coverage"

phpcs.xml

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
<arg value="sp"/>
44
<file>src</file>
55
<file>tests</file>
6-
<rule ref="InspirumCodingStandard"/>
6+
<rule ref="InspirumCodingStandard">
7+
<exclude name="SlevomatCodingStandard.TypeHints.ClassConstantTypeHint.MissingNativeTypeHint"/>
8+
</rule>
79
</ruleset>

0 commit comments

Comments
 (0)