Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  specify next release
  update actions
  test against php 8.3
  add support for symfony 7
  • Loading branch information
Baptouuuu committed Dec 2, 2023
2 parents 3c1c840 + 20674cf commit 7268756
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2']
php-version: ['8.2', '8.3']
dependencies: ['lowest', 'highest']
name: 'Psalm'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand All @@ -32,7 +32,7 @@ jobs:
name: 'CS'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.2.0 - 2023-12-02

### Added

- Support for `symfony/framework-bundle:~7.0`
- Support for `symfony/browser-kit:~7.0`
- Support for `symfony/http-foundation:~7.0`
- Support for `symfony/http-kernel:~7.0`

## 1.1.1 - 2023-09-02

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"require": {
"php": "~8.2",
"innmind/black-box": "~5.3",
"symfony/framework-bundle": "~6.0",
"symfony/browser-kit": "~6.0",
"symfony/http-foundation": "~6.0",
"symfony/http-kernel": "~6.0"
"symfony/framework-bundle": "~6.0|~7.0",
"symfony/browser-kit": "~6.0|~7.0",
"symfony/http-foundation": "~6.0|~7.0",
"symfony/http-kernel": "~6.0|~7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7268756

Please sign in to comment.