Skip to content

Commit

Permalink
feat!: DROP PHP 7.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Mar 21, 2021
1 parent 87a3ccb commit 64bc522
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
php-version: ["7.1", "7.2", "7.3", "7.4", "8.0"]
php-version: ["7.2", "7.3", "7.4", "8.0"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
Expand All @@ -24,7 +24,7 @@ jobs:
path: ~/.composer/cache/
key: composer-cache
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress --no-suggest
run: composer install --no-interaction
- name: Run php tests
run: composer run phpunit
- name: Send coverage
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Use `phpmyadmin/twig-i18n-extension` for Twig translation tag and pipe support
- Drop Twig 2
- Support Twig 3
- Drop PHP 7.1
- Require PHP `>=` `7.2.9`

## [v2.1.0] - 2020-12-01

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
},
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.2.9 || ^8.0",
"twig/twig": "^3",
"phpmyadmin/twig-i18n-extension": "^4.0"
},
Expand Down

0 comments on commit 64bc522

Please sign in to comment.