Skip to content

Commit 7deea92

Browse files
authored
Merge pull request #207 from aik099/php56-min
Removed support of PHP 5.4.x and PHP 5.5.x versions
2 parents 141f494 + 1ca5f0e commit 7deea92

File tree

4 files changed

+643
-123
lines changed

4 files changed

+643
-123
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
runs-on: ubuntu-20.04
2121
strategy:
2222
matrix:
23-
php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
23+
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
2424
fail-fast: false
2525
env:
2626
REPO_URL: http://localhost:8002/
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 2
3333

@@ -46,7 +46,7 @@ jobs:
4646
composer require --no-update --dev symfony/error-handler "^4.4 || ^5.0"
4747
4848
- name: Install dependencies
49-
uses: "ramsey/composer-install@v1"
49+
uses: "ramsey/composer-install@v3"
5050
with:
5151
dependency-versions: "highest"
5252

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
2828
- Added local cache to getResolutions by [@jpastoor].
2929
- Renamed Api::api() parameter $return_as_json to $return_as_array by [@jpastoor].
3030
- Renamed `Api::createRemotelink` to `Api::createRemoteLink` by [@glensc].
31+
- Minimal supported PHP version changed from 5.3 to 5.6 by [@aik099].
3132

3233
### Removed
3334
...

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.4.0"
15+
"php": ">=5.6.0"
1616
},
1717
"require-dev": {
1818
"aik099/coding-standard": "dev-master",

0 commit comments

Comments
 (0)