Skip to content

Commit

Permalink
Laravel 5.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennoten committed Jan 26, 2017
1 parent b86a60b commit cbb9b70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,18 @@
]
},
"require": {
"laravel/framework": "~5.2.0|~5.3.0",
"laravel/framework": "~5.2.0|~5.3.0|~5.4.0",
"jeroennoten/laravel-package-helper": "^3.1",
"league/flysystem": "^1.0.8",
"intervention/image": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.8.20",
"orchestra/testbench": "~3.2.4|~3.3.0",
"orchestra/database": "~3.2.0|~3.3.0|~3.4.0-dev",
"orchestra/testbench": "~3.2.4|~3.3.0|~3.4.0-dev",
"mockery/mockery": "^0.9.5",
"hamcrest/hamcrest-php": "~1.2",
"league/flysystem-aws-s3-v3": "^1.0.1"
"league/flysystem-aws-s3-v3": "^1.0.1",
"laravel/browser-kit-testing": "^1.0"
}
}
1 change: 1 addition & 0 deletions tests/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public function testDefaultDisk()
public function testCloudDisk()
{
$this->app['config']['ckeditor.disk'] = 's3';
$this->app['config']['filesystems.disks.s3.region'] = 'your-region';

/** @var ImageUploader $imageUploader */
$imageUploader = $this->app->make(ImageUploader::class);
Expand Down
3 changes: 3 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

class TestCase extends \Orchestra\Testbench\TestCase
{
use \Laravel\BrowserKitTesting\Concerns\MakesHttpRequests;
use \Laravel\BrowserKitTesting\Concerns\InteractsWithSession;

/** @before */
public function injectDependencies()
{
Expand Down

0 comments on commit cbb9b70

Please sign in to comment.