Skip to content

Commit 1337749

Browse files
committed
Merge branch 'main' of github.com:protonemedia/laravel-minio-testing-tools
2 parents 9103d40 + 4178bec commit 1337749

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
This package provides a trait to run your tests against a MinIO S3 server.
1010

11+
📝 Blog post: https://protone.media/en/blog/how-to-use-a-local-minio-s3-server-with-laravel-and-automatically-configure-it-for-your-laravel-dusk-test-suite
12+
1113
## Support
1214

1315
We proudly support the community by developing Laravel packages and giving them away for free. Keeping track of issues and pull requests takes time, but we're happy to help! If this package saves you time or if you're relying on it professionally, please consider [supporting the maintenance and development](https://github.com/sponsors/pascalbaljet).
@@ -36,16 +38,16 @@ Add the trait to your test, and add the `bootUsesMinIOServer` method:
3638
```php
3739
<?php
3840

39-
namespace Tests\Browser\Backend;
41+
namespace Tests\Browser;
4042

4143
use Illuminate\Foundation\Testing\DatabaseMigrations;
42-
use ProtoneMedia\LaravelMinioTestingTools\UsesMinioServer;
44+
use ProtoneMedia\LaravelMinioTestingTools\UsesMinIOServer;
4345
use Tests\DuskTestCase;
4446

4547
class UploadVideoTest extends DuskTestCase
4648
{
4749
use DatabaseMigrations;
48-
use UsesMinioServer;
50+
use UsesMinIOServer;
4951

5052
protected function setUp(): void
5153
{
@@ -173,4 +175,4 @@ If you discover any security-related issues, please email code@protone.media ins
173175

174176
## License
175177

176-
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
178+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

0 commit comments

Comments
 (0)