Skip to content

Commit

Permalink
Adds self-update to composer build for psr-4 autoload, fixes array us…
Browse files Browse the repository at this point in the history
…age for 5.3
  • Loading branch information
jacobemerick committed Nov 28, 2015
1 parent d92e416 commit a5e9892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ php:
- 5.6

install:
- composer self-update
- composer install --no-interaction

6 changes: 3 additions & 3 deletions tests/unit/domain/blog/MysqlPostRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ public function newMysqlPostRepository()

public function testFindByUri()
{
$test_post = [
$test_post = array(
'title' => 'test title',
'path' => 'test-uri',
'category' => 'test',
'date' => date('Y-m-d H:i:s'),
'body' => 'test content',
'display' => 1,
];
'display' => 1
);

$this->connections->getDefault()->perform("
INSERT INTO jpemeric_blog.post
Expand Down

0 comments on commit a5e9892

Please sign in to comment.