Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0028974

Browse filesBrowse files
committed
Drop support for PHP 7.4
1 parent d57b004 commit 0028974
Copy full SHA for 0028974

13 files changed

+4
-107
lines changed

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
php-version:
18-
- '7.4'
1918
- '8.0'
2019
- '8.1'
2120
- '8.2'

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Installation instructions to use the `composer` command can be found on https://
3838

3939
### 📋 Requirements
4040

41-
PHP Curl Class works with PHP 8.4, 8.3, 8.2, 8.1, 8.0, and 7.4.
41+
PHP Curl Class works with PHP 8.4, 8.3, 8.2, 8.1, and 8.0.
4242

4343
### 🚀 Quick Start and Examples
4444

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": ">=7.4",
21+
"php": ">=8.0",
2222
"ext-curl": "*"
2323
},
2424
"require-dev": {

‎tests/dockerfiles/php74/1_build.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/1_build.sh
-3Lines changed: 0 additions & 3 deletions
This file was deleted.

‎tests/dockerfiles/php74/2_start.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/2_start.sh
-15Lines changed: 0 additions & 15 deletions
This file was deleted.

‎tests/dockerfiles/php74/3_test.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/3_test.sh
-17Lines changed: 0 additions & 17 deletions
This file was deleted.

‎tests/dockerfiles/php74/4_stop.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/4_stop.sh
-3Lines changed: 0 additions & 3 deletions
This file was deleted.

‎tests/dockerfiles/php74/Dockerfile

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/Dockerfile
-19Lines changed: 0 additions & 19 deletions
This file was deleted.

‎tests/dockerfiles/php74/attach.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/attach.sh
-3Lines changed: 0 additions & 3 deletions
This file was deleted.

‎tests/dockerfiles/php74/run.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/run.sh
-23Lines changed: 0 additions & 23 deletions
This file was deleted.

‎tests/dockerfiles/php74/run_interactive.sh

Copy file name to clipboardExpand all lines: tests/dockerfiles/php74/run_interactive.sh
-14Lines changed: 0 additions & 14 deletions
This file was deleted.

‎tests/run_static_analysis_check_phpstan.sh

Copy file name to clipboardExpand all lines: tests/run_static_analysis_check_phpstan.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pushd ..
1010

1111
set -x
1212

13-
if [[ $(echo "${CI_PHP_VERSION} >= 7.4" | bc -l) -eq 1 ]]; then
13+
if true; then
1414

1515
phpstan_args=(--ansi --configuration="tests/phpstan.neon")
1616

‎tests/run_static_analysis_check_psalm.sh

Copy file name to clipboardExpand all lines: tests/run_static_analysis_check_psalm.sh
+1-6Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ if [[ ! -f "vendor/bin/psalm" ]]; then
1515
warnings+=("Skipped running psalm static analysis check")
1616
else
1717
vendor/bin/psalm --version
18-
19-
if [[ $(echo "${CI_PHP_VERSION} == 7.4" | bc -l) -eq 1 ]]; then
20-
vendor/bin/psalm --config="tests/psalm_7.4.xml"
21-
else
22-
vendor/bin/psalm --config="tests/psalm.xml"
23-
fi
18+
vendor/bin/psalm --config="tests/psalm.xml"
2419

2520
if [[ "${?}" -ne 0 ]]; then
2621
echo "❌ Error: psalm static analysis check failed"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.