Skip to content

Commit

Permalink
IBX-8119: Upgraded minimum PHP version to 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Steveb-p authored Apr 25, 2024
1 parent c4caacb commit 4c91177
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 29 deletions.
6 changes: 3 additions & 3 deletions .github/actions/composer-install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ runs:
version=$(jq -r '.extra | ."branch-alias" | ."dev-main"' < composer.json)
echo "version=$version" >> $GITHUB_ENV
shell: bash
- uses: ramsey/composer-install@v2
- uses: ramsey/composer-install@v3
with:
dependency-versions: "highest"
dependency-versions: highest
env:
COMPOSER_ROOT_VERSION: ${{ env.version }}
COMPOSER_ROOT_VERSION: ${{ env.version }}
8 changes: 1 addition & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:
name: Run code style check
runs-on: "ubuntu-22.04"
strategy:
matrix:
php:
- '8.0'

steps:
- uses: actions/checkout@v4

Expand All @@ -40,8 +38,6 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.3'

steps:
Expand Down Expand Up @@ -73,8 +69,6 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.3'

steps:
Expand Down
39 changes: 20 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,37 @@
"ezsystems/ezplatform-content-forms": "*"
},
"require": {
"php": "^7.4 || ^8.0",
"php": " >=8.3",
"ext-json": "*",
"ibexa/core": "~5.0.0@dev",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/options-resolver": "^5.0",
"ibexa/core": "~5.0.x-dev",
"jms/translation-bundle": "^1.5",
"symfony/config": "^5.0",
"symfony/yaml": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/form": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/validator": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/routing": "^5.0",
"symfony/translation": " ^5.0",
"jms/translation-bundle": "^1.5"
"symfony/validator": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"behat/behat": "^3.5",
"friendsofphp/php-cs-fixer": "^3.0",
"ibexa/behat": "~5.0.x-dev",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/behat": "~5.0.0@dev",
"ibexa/doctrine-schema": "~5.0.0@dev",
"ibexa/http-cache": "~5.0.0@dev",
"ibexa/code-style": "^1.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/rest": "~5.0.0@dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/user": "^5.0.x-dev",
"phpunit/phpunit": "^8.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"behat/behat": "^3.5",
"friendsofphp/php-cs-fixer": "^3.0",
"ibexa/code-style": "^1.0"
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -66,7 +66,8 @@
"config": {
"allow-plugins": {
"*/*": false
}
},
"sort-packages": true
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
Expand Down

0 comments on commit 4c91177

Please sign in to comment.