Skip to content

Commit 2f18c3b

Browse files
Changed the dev illuminate dependencies to use 5.0 so it works with php 5.4
1 parent e8c9b81 commit 2f18c3b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
},
2525
"require-dev": {
2626
"phpunit/phpunit": "4.8.*",
27-
"illuminate/session": "5.1.*",
28-
"illuminate/view": "5.1.*"
27+
"illuminate/session": "5.0.*",
28+
"illuminate/view": "5.0.*",
29+
"illuminate/events": "5.0.*"
2930
},
3031
"minimum-stability": "dev"
3132
}

tests/BaseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected function session()
6464
*/
6565
protected function illuminateSession()
6666
{
67-
return new Store($this->app['config']['session.cookie'], new NullSessionHandler());
67+
return new Store($this->config()['session']['key'], new NullSessionHandler());
6868
}
6969

7070
/**

0 commit comments

Comments
 (0)