Skip to content

Commit

Permalink
Updated to work with Laravel 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
chelout committed Mar 3, 2020
1 parent 756ddbd commit ebb1029
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
coverage: none

- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --no-suggest

- name: Execute tests
run: vendor/bin/phpunit --verbose
20 changes: 12 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"description": "Missing relationship events for Laravel",
"homepage": "https://github.com/chelout/laravel-relationship-events",
"license": "MIT",
"keywords": ["laravel", "relationship", "relations", "events"],
"keywords": [
"laravel",
"relationship",
"relations",
"events"
],
"authors": [
{
"name": "chelout",
Expand All @@ -12,15 +17,14 @@
],
"require": {
"php": "^7.2",
"illuminate/container": "^6.0",
"illuminate/database": "^6.0",
"illuminate/events": "^6.0",
"illuminate/support": "^6.0"
"illuminate/container": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/events": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"orchestra/testbench-core": "^4.0",
"orchestra/testbench": "^4.0"
"phpunit/phpunit": "^8.3|^9.0",
"orchestra/testbench": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ebb1029

Please sign in to comment.