Skip to content

Commit

Permalink
Removed support of PHP 5.4.x and PHP 5.5.x versions
Browse files Browse the repository at this point in the history
Upgraded used GitHub Actions
  • Loading branch information
aik099 committed Oct 29, 2024
1 parent 141f494 commit 1ca5f0e
Show file tree
Hide file tree
Showing 4 changed files with 643 additions and 123 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
fail-fast: false
env:
REPO_URL: http://localhost:8002/

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand All @@ -46,7 +46,7 @@ jobs:
composer require --no-update --dev symfony/error-handler "^4.4 || ^5.0"
- name: Install dependencies
uses: "ramsey/composer-install@v1"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"

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

### Removed
...
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": ">=5.4.0"
"php": ">=5.6.0"
},
"require-dev": {
"aik099/coding-standard": "dev-master",
Expand Down
Loading

0 comments on commit 1ca5f0e

Please sign in to comment.