Skip to content
This repository has been archived by the owner on Mar 1, 2022. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlap committed Aug 14, 2019
1 parent d9f67d3 commit 6ed389b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
language: php

php:
- 7.1
- 7.2
- 7.3

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
- COMPOSER_FLAGS="--prefer-stable"

before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction --no-suggest

script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All Notable changes to `laravel-approvable` will be documented in this file.

Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## Version 1.2.0 - 2019-08-14
Modified:
- Updated dependencies to require php@^7.2, laravel/framework@^5.8|^6.0

## Version 1.1.0 - 2018-08-27
Added:
- `withApproval()` method.
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
}
],
"require": {
"php": "^7.1",
"illuminate/database": "5.6.*",
"illuminate/support": "5.6.*"
"php": "^7.2",
"illuminate/database": "^5.8|^6.0",
"illuminate/support": "^5.8|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "^7.0"
"orchestra/testbench": "^3.8",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestCase extends Orchestra
{
use DatabaseTransactions;

public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 6ed389b

Please sign in to comment.