Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.0.1alpha6] - 25/04/2025

### Fixes
- Enforce strict types PHP

## [0.0.1alpha5] - 12/04/2025

### Additions
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This is the list of individuals who have contributed to the project. If you've c

<!-- Please add your name in alphabetical order -->

- [Yassine Selmi](https://github.com/selmiyassine)
- [Your name could be here!]

## How to Contribute
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ The MIT License (MIT). Please see [License File](LICENSE) for more information.
## Credits

- [Fallega HQ](https://github.com/fallegahq)
- [Yassine Selmi](https://github.com/selmiyassine)
- [All Contributors](CONTRIBUTORS.md)

## Made with 💕
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1alpha5
0.0.1alpha6
2 changes: 2 additions & 0 deletions examples/AdvancedExamples.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Made with love.
*/

declare(strict_types = 1);
namespace FallegaHQ\JsonTestUtils\Examples;

use FallegaHQ\JsonTestUtils\JsonAssertions;
Expand Down
2 changes: 2 additions & 0 deletions examples/ApiTestingExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Made with love.
*/

declare(strict_types = 1);
namespace FallegaHQ\JsonTestUtils\Examples;

use FallegaHQ\JsonTestUtils\JsonAssertions;
Expand Down
2 changes: 2 additions & 0 deletions examples/BasicUsage.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Made with love.
*/

declare(strict_types = 1);
namespace FallegaHQ\JsonTestUtils\Examples;

use FallegaHQ\JsonTestUtils\JsonAssertions;
Expand Down
2 changes: 2 additions & 0 deletions src/JsonValidationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Made with love.
*/

declare(strict_types = 1);
namespace FallegaHQ\JsonTestUtils;

use InvalidArgumentException;
Expand Down
2 changes: 2 additions & 0 deletions src/JsonValidatorAssertion.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
/**
* Made with love.
*/

declare(strict_types = 1);
namespace FallegaHQ\JsonTestUtils;

use PHPUnit\Framework\Assert;
Expand Down