Skip to content

Commit

Permalink
feat: drop support for php 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
carlalexander committed Sep 7, 2020
1 parent b0d206a commit 53b9635
Show file tree
Hide file tree
Showing 4 changed files with 364 additions and 271 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ on: push

jobs:
code-quality:
name: Run code quality checks on PHP 7.1
name: Run code quality checks on PHP 7.2
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.1'
php-version: '7.2'
- name: Get Composer Cache Directory
id: composer-cache
run: |
Expand All @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4']
php-versions: ['7.2', '7.3', '7.4']
steps:
- name: Checkout code
uses: actions/checkout@v2
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": ">=7.1",
"php": ">=7.2",
"ext-json": "*"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 53b9635

Please sign in to comment.