We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ad623 commit 6a274c3Copy full SHA for 6a274c3
composer.json
@@ -94,4 +94,4 @@
94
},
95
"minimum-stability": "dev",
96
"prefer-stable": true
97
-}
+}
tests/TestCase.php
@@ -41,8 +41,11 @@ protected function defineEnvironment($app)
41
{
42
$app['config']->set('database.default', 'testing');
43
44
- $app['config']->set('media.ffmpeg.ffmpeg_binaries', '/opt/homebrew/bin/ffmpeg');
45
- $app['config']->set('media.ffprobe.ffprobe_binaries', '/opt/homebrew/bin/ffprobe');
+ if (PHP_OS_FAMILY === 'Darwin') {
+ $app['config']->set('media.ffmpeg.ffmpeg_binaries', '/opt/homebrew/bin/ffmpeg');
46
+ $app['config']->set('media.ffprobe.ffprobe_binaries', '/opt/homebrew/bin/ffprobe');
47
+ }
48
+
49
}
50
51
protected function defineDatabaseMigrations()
0 commit comments