Skip to content

Commit

Permalink
Drop support for Laravel 5.* (#144)
Browse files Browse the repository at this point in the history
* Update composer.json

* Update tests.yml
  • Loading branch information
Propaganistas authored Jun 22, 2020
1 parent 115f5b1 commit e207b24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.1, 7.2, 7.3, 7.4]
laravel: [5.5.*, 5.6.*, 5.7.*, 5.8.*, 6.*, 7.*]
php: [7.2, 7.3, 7.4]
laravel: [6.*, 7.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 5.5.*
testbench: 3.5.*
- laravel: 5.6.*
testbench: 3.6.*
- laravel: 5.7.*
testbench: 3.7.*
- laravel: 5.8.*
testbench: 3.8.*
- laravel: 6.*
testbench: 4.*
- laravel: 7.*
testbench: 5.*
exclude:
- laravel: 6.*
php: 7.1
- laravel: 7.*
php: 7.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
],
"require": {
"php": ">=7.1",
"illuminate/support": "^5.5|^6.0|^7.0",
"illuminate/validation": "^5.5|^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/validation": "^6.0|^7.0",
"giggsey/libphonenumber-for-php": "^7.0|^8.0",
"league/iso3166": "^2.0"
},
Expand Down

1 comment on commit e207b24

@LeMaX10
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove support Laravel 5.5 and create 4.2.4 version.
Is versioning not going according to semver?

Please sign in to comment.