Skip to content

Commit 4bf2512

Browse files
committed
Updates
1 parent c8a7a99 commit 4bf2512

File tree

11 files changed

+36
-12
lines changed

11 files changed

+36
-12
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Hammerstone
3+
Copyright (c) 2021 Aaron Francis
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Flaky for Laravel
1+
# Flaky for Laravel
22

33
Flaky for Laravel is a package that helps you handle operations that may have intermittent failures due to unreliable
44
third-parties.
@@ -8,7 +8,7 @@ third-parties.
88
You can install the package via Composer
99

1010
```console
11-
composer require hammerstone/flaky
11+
composer require aaronfrancis/flaky
1212
```
1313

1414
## Usage
@@ -270,3 +270,27 @@ class FlakyTestCommand extends Command
270270
}
271271
}
272272
```
273+
274+
## License
275+
276+
The MIT License (MIT).
277+
278+
## Support
279+
280+
This is free! If you want to support me:
281+
282+
- Sponsor my open source work: [aaronfrancis.com/backstage](https://aaronfrancis.com/backstage)
283+
- Check out my courses:
284+
- [Mastering Postgres](https://masteringpostgres.com)
285+
- [High Performance SQLite](https://highperformancesqlite.com)
286+
- [Screencasting](https://screencasting.com)
287+
- Help spread the word about things I make
288+
289+
## Credits
290+
291+
Flaky was developed by Aaron Francis. If you like it, please let me know!
292+
293+
- Twitter: https://twitter.com/aarondfrancis
294+
- Website: https://aaronfrancis.com
295+
- YouTube: https://youtube.com/@aarondfrancis
296+
- GitHub: https://github.com/aarondfrancis/solo

src/Flaky.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev|https://twitter.com/aarondfrancis>
4+
* @author Aaron Francis <aaron@tryhardstudios.com|https://twitter.com/aarondfrancis>
55
*/
66

77
namespace AaronFrancis\Flaky;

src/Providers/FlakyServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Providers;

tests/Support/FlakyTestServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Support;

tests/Unit/ArbiterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Unit;

tests/Unit/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev|https://twitter.com/aarondfrancis>
4+
* @author Aaron Francis <aaron@tryhardstudios.com|https://twitter.com/aarondfrancis>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Unit;

tests/Unit/BasicTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Unit;

tests/Unit/CommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Unit;

tests/Unit/RetryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Flaky\Tests\Unit;

0 commit comments

Comments
 (0)