Skip to content
This repository has been archived by the owner on Sep 19, 2019. It is now read-only.

Commit

Permalink
Bump laravel min dependeny to 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
deefour committed Jul 28, 2014
1 parent fdd4e84 commit c2cc46b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -19,9 +19,9 @@
"email": "jason@deefour.me"
},
"require-dev": {
"illuminate/database": "4.1.29",
"illuminate/validation": "4.1.29",
"illuminate/support": "4.1.29",
"illuminate/database": "~4.2",
"illuminate/validation": "~4.2",
"illuminate/support": "~4.2",
"silex/silex": "~1.2",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "4.0.*",
Expand Down
2 changes: 1 addition & 1 deletion tests/Persistence/Model/Eloquent/ModelTest.php
Expand Up @@ -10,7 +10,7 @@ public function testIsEloquentBacked() {
$dummy = new TestDummy;

$this->assertInstanceOf('\Illuminate\Database\Eloquent\Model', $dummy);
$this->assertCount(3, $dummy->getDates());
$this->assertCount(2, $dummy->getDates());
}

public function testFromArray() {
Expand Down

0 comments on commit c2cc46b

Please sign in to comment.