Skip to content

Commit cbb6824

Browse files
authored
Merge pull request #89 from leviy/master_newer-php-versions
Drop support for anything but PHP 8.3
2 parents 4462e0e + 257d699 commit cbb6824

File tree

5 files changed

+638
-907
lines changed

5 files changed

+638
-907
lines changed

Diff for: .github/workflows/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# It's important to use the lowest supported PHP version when building the release-tool.
2525
# Otherwise, users can be confronted with a composer platform check error when they use
2626
# a PHP version that's lower than the version used here to build the release-tool.
27-
php-version: '7.4'
27+
php-version: '8.3'
2828

2929
- name: Composer Install
3030
uses: ramsey/composer-install@v2

Diff for: .github/workflows/nightly.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '7.4'
19+
php-version: '8.3'
2020

2121
- name: Composer Install
2222
uses: ramsey/composer-install@v2
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
3535
with:
36-
php-version: '7.4'
36+
php-version: '8.3'
3737

3838
- name: Security checks
3939
run: make security-tests

Diff for: .github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [ 7.4, 8.0, 8.1 ]
14+
php: [ 8.3 ]
1515

1616
steps:
1717
- name: checkout

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Command line tool for releasing new versions of a project",
55
"license": "MIT",
66
"require": {
7-
"php": "^7.4 || ^8.0, <8.2",
7+
"php": "^8.3",
88
"beberlei/assert": "^3.2",
99
"consolidation/self-update": "^2.0",
1010
"guzzlehttp/guzzle": "^6.3",

0 commit comments

Comments
 (0)