Skip to content

Commit

Permalink
Merge pull request #195 from aroskanalen/feature/369-feed-fixes
Browse files Browse the repository at this point in the history
Fixed issues with feed following api platform upgrade
  • Loading branch information
tuj authored Mar 18, 2024
2 parents 4d8c6ec + 2041ab2 commit c07101f
Show file tree
Hide file tree
Showing 23 changed files with 656 additions and 409 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php_upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: Validate composer (PHP ${{ matrix.php}})
steps:
- name: Checkout
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
name: PHP Unit tests (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
php: ["8.4"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: Validate composer (PHP ${{ matrix.php}})
steps:
- name: Checkout
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: Validate Doctrine Schema (PHP ${{ matrix.php}})
services:
mariadb:
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: PHP Coding Standards Fixer (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: Psalm (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: Rector (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
name: PHP Unit tests (PHP ${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- Fixed issues with feed following api platform upgrade.
- [#192](https://github.com/os2display/display-api-service/pull/192)
- Fix env value typo's
- [#191](https://github.com/os2display/display-api-service/pull/191)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "proprietary",
"type": "project",
"require": {
"php": ">=8.2",
"php": ">=8.3",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
Expand Down Expand Up @@ -127,12 +127,12 @@
"bin/console hautelook:fixtures:load --no-interaction"
],
"prepare-code": [
"bin/console doctrine:schema:validate",
"vendor/bin/rector",
"vendor/bin/psalm",
"@coding-standards-apply",
"@test-setup",
"@test",
"bin/console doctrine:schema:validate",
"vendor/bin/psalm"
"@test"
],
"test": [
"vendor/bin/phpunit --stop-on-failure"
Expand Down
Loading

0 comments on commit c07101f

Please sign in to comment.