Skip to content

Drop support for PHP 7.3 #889

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

Merged
merged 1 commit into from
Aug 22, 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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
php-version:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Installation instructions to use the `composer` command can be found on https://

### Requirements

PHP Curl Class works with PHP 8.3, 8.2, 8.1, 8.0, 7.4, and 7.3.
PHP Curl Class works with PHP 8.3, 8.2, 8.1, 8.0, and 7.4.

### Quick Start and Examples

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"require": {
"php": ">=7.3",
"php": ">=7.4",
"ext-curl": "*"
},
"require-dev": {
Expand Down
13 changes: 5 additions & 8 deletions tests/check_coding_standards.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,9 @@ if [[ "${?}" -ne 0 ]]; then
fi

# Run PHP-CS-Fixer.
if [[ "${CI_PHP_VERSION}" == "7.3" ]]; then :
else
vendor/bin/php-cs-fixer --version
vendor/bin/php-cs-fixer fix --ansi --config="tests/.php-cs-fixer.php" --diff --dry-run
if [[ "${?}" -ne 0 ]]; then
echo "Error: found PHP-CS-Fixer coding standard violation(s)"
errors+=("found PHP-CS-Fixer coding standard violation(s)")
fi
vendor/bin/php-cs-fixer --version
vendor/bin/php-cs-fixer fix --ansi --config="tests/.php-cs-fixer.php" --diff --dry-run
if [[ "${?}" -ne 0 ]]; then
echo "Error: found PHP-CS-Fixer coding standard violation(s)"
errors+=("found PHP-CS-Fixer coding standard violation(s)")
fi
3 changes: 0 additions & 3 deletions tests/dockerfiles/php73/1_build.sh

This file was deleted.

15 changes: 0 additions & 15 deletions tests/dockerfiles/php73/2_start.sh

This file was deleted.

17 changes: 0 additions & 17 deletions tests/dockerfiles/php73/3_test.sh

This file was deleted.

3 changes: 0 additions & 3 deletions tests/dockerfiles/php73/4_stop.sh

This file was deleted.

19 changes: 0 additions & 19 deletions tests/dockerfiles/php73/Dockerfile

This file was deleted.

3 changes: 0 additions & 3 deletions tests/dockerfiles/php73/attach.sh

This file was deleted.

23 changes: 0 additions & 23 deletions tests/dockerfiles/php73/run.sh

This file was deleted.

14 changes: 0 additions & 14 deletions tests/dockerfiles/php73/run_interactive.sh

This file was deleted.

Loading