Skip to content

Commit

Permalink
Prepare for L5
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed Sep 25, 2014
1 parent 01fec37 commit dfd9195
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ branches:
- master

php:
- 5.3
- 5.4
- 5.5
- 5.6

before_script:
- composer self-update
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"license" : "MIT",
"require": {
"php": ">=5.3.0",
"php": ">=5.4.0",
"illuminate/support": "~5.0@dev",
"illuminate/contracts": "~5.0@dev"
},
Expand Down
7 changes: 4 additions & 3 deletions src/Jenssegers/Model/Model.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php namespace Jenssegers\Model;

use ArrayAccess;
use Illuminate\Contracts\Support\Jsonable as JsonableInterface;
use Illuminate\Contracts\Support\Arrayable as ArrayableInterface;
use JsonSerializable;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Contracts\Support\Arrayable;

abstract class Model implements ArrayAccess, ArrayableInterface, JsonableInterface {
abstract class Model implements ArrayAccess, Arrayable, Jsonable, JsonSerializable {

/**
* The model's attributes.
Expand Down

0 comments on commit dfd9195

Please sign in to comment.