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 committed Apr 23, 2024
1 parent 0b82ed3 commit 780d301
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 32 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
php:
- '8.1'
- '8.3'
steps:
- uses: actions/checkout@v4

Expand All @@ -28,7 +28,7 @@ jobs:

- uses: ramsey/composer-install@v3
with:
dependency-versions: "highest"
dependency-versions: highest

- name: Run code style check
run: composer run-script check-cs -- --format=checkstyle | cs2pr
Expand All @@ -42,9 +42,7 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.2'
- '8.3'

steps:
- uses: actions/checkout@v4
Expand All @@ -59,7 +57,7 @@ jobs:

- uses: ramsey/composer-install@v3
with:
dependency-versions: "highest"
dependency-versions: highest

- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
Expand Down
53 changes: 27 additions & 26 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,44 +25,44 @@
}
},
"require": {
"php": "^7.4 || ^8.0",
"ibexa/core": "~5.0.0@dev",
"ibexa/content-forms": "~5.0.0@dev",
"ibexa/notifications": "~5.0.0@dev",
"php": " >=8.3",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"jms/translation-bundle": "^1.5",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/translation": "^5.0",
"symfony/security-core": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/config": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/intl": "^5.0",
"symfony/validator": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/intl": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/routing": "^5.0",
"symfony/security-core": "^5.0",
"symfony/security-http": "^5.0",
"symfony/swiftmailer-bundle": "^3.4",
"twig/twig": "^3.0",
"symfony/security-http": "^5.0"
"symfony/translation": "^5.0",
"symfony/validator": "^5.0",
"twig/twig": "^3.0"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/doctrine-schema": "~5.0.0@dev",
"ibexa/search": "~5.0.0@dev",
"ibexa/design-engine": "~5.0.0@dev",
"ibexa/http-cache": "~5.0.0@dev",
"ibexa/fieldtype-richtext": "~5.0.0@dev",
"ibexa/rest": "~5.0.0@dev",
"symfony/proxy-manager-bridge": "^5.0",
"friendsofphp/php-cs-fixer": "^3.0",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "^1.0",
"phpunit/phpunit": "^8.2",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/fieldtype-richtext": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "4.3",
"symfony/phpunit-bridge": "^5.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3"
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^8.2",
"symfony/phpunit-bridge": "^5.3",
"symfony/proxy-manager-bridge": "^5.0"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
Expand All @@ -76,6 +76,7 @@
}
},
"config": {
"allow-plugins": false
"allow-plugins": false,
"sort-packages": true
}
}

0 comments on commit 780d301

Please sign in to comment.