Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 27, 2019
1 parent 8d143a5 commit 99d3622
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ env:
- COMPOSER_FLAGS=""

php:
- 7.1
- 7.2
- 7.3

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-schemaless-attributes` will be documented in this file

## 1.4.0 - 2019-02-27

- drop support for PHP 7.1

## 1.3.1 - 2019-02-01

- use Arr:: and Str:: functions
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"illuminate/database": "^5.6",
"illuminate/support": "^5.6"
},
"require-dev": {
"larapack/dd": "^1.0",
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/HasSchemalessAttributesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class HasSchemalessAttributesTest extends TestCase
/** @var \Spatie\SchemalessAttributes\Tests\TestModel */
protected $testModel;

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

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

abstract class TestCase extends Orchestra
{
public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 99d3622

Please sign in to comment.