Skip to content

Commit

Permalink
Require Laravel 6.0+ and PHP 7.2+, drop support for Laravel 5.x and P…
Browse files Browse the repository at this point in the history
…HP 7.0/7.1

Per my comments in this PR (OveD-php/typed-collections#3):

My suggestion would be to bump the versioning of your Laravel packages to
align with Laravel versioning so that the existing versions (0.0.7, 2.0.2)
remain available for Laravel 5.x users and a new version (e.g. 6.0.0) is
available for Laravel 6.x users.
  • Loading branch information
jason-klein committed Nov 26, 2019
1 parent 30243ea commit f76ef4e
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: php
cache: vendor
php:
- 7.0
- 7.1
- 7.2
- 7.3

sudo: required

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ If you discover any security related issues, please email :author_email instead

- [Visti Kløft](https://github.com/vistik)
- [Peter Suhm](https://github.com/petersuhm)
- [Jason Klein](https://github.com/jason-klein)

## License

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"type": "package",
"package": {
"name": "vistik/typed-collections",
"version": "2.0.2",
"version": "6.0.0",
"source": {
"url": "https://github.com/jason-klein/typed-collections",
"type": "git",
"reference": "dev-laravel6"
"reference": "pr-laravel6x"
},
"type": "library",
"autoload": {
Expand All @@ -37,14 +37,14 @@
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": "~6.0|~5.4|~5.3",
"vistik/typed-collections": "^2.0"
"php": "^7.2",
"illuminate/support": "^6.0",
"vistik/typed-collections": "^6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "~8.0|~7.0|~6.0",
"orchestra/testbench": "~4.0|~3.0",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^8.0|^7.0",
"orchestra/testbench": "^4.0|^3.0",
"mockery/mockery": "^1.2|^0.9.9",
"phpmd/phpmd": "^2.6"
},
Expand Down
39 changes: 19 additions & 20 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f76ef4e

Please sign in to comment.