Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for anything but PHP 8.3 #89

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# It's important to use the lowest supported PHP version when building the release-tool.
# Otherwise, users can be confronted with a composer platform check error when they use
# a PHP version that's lower than the version used here to build the release-tool.
php-version: '7.4'
php-version: '8.3'

- name: Composer Install
uses: ramsey/composer-install@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.3'

- name: Composer Install
uses: ramsey/composer-install@v2
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.3'

- name: Security checks
run: make security-tests
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 7.4, 8.0, 8.1 ]
php: [ 8.3 ]

steps:
- name: checkout
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Command line tool for releasing new versions of a project",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0, <8.2",
"php": "^8.3",
"beberlei/assert": "^3.2",
"consolidation/self-update": "^2.0",
"guzzlehttp/guzzle": "^6.3",
Expand Down
Loading
Loading