Skip to content

Commit 1960d76

Browse files
committed
chore: 🔖 release v1.1.3
1 parent fbce1b4 commit 1960d76

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ All notable changes to `laravel-unit-tests` will be documented in this file.
66
- This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
77
- Commits respect [Conventionnal commits](https://www.conventionalcommits.org/en/v1.0.0/) & use [Gitmoji](https://gitmoji.dev/).
88

9+
## **[v1.1.3] - 25/09/2025**
10+
11+
### Changed
12+
- chore: ⬆️ add laravel 12 compatibility
13+
- docs: 🔥 remove useless documentations
14+
15+
### Fixed
16+
- fix: 🚨 solving php linters errors
17+
18+
Full changelog: https://github.com/alexis-gss/laravel-unit-tests/compare/v1.1.2...v1.1.3
19+
920
## **[v1.1.2] - 13/12/2024**
1021

1122
### Changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,28 @@
2929

3030
| Versions | Laravel 8^ | Laravel 9^ | Laravel 10^ | Laravel 11^ | Laravel 12^ |
3131
| :---------: | :---------: | :---------: | :---------: | :---------: | :---------: |
32-
| v1.1.3 ||||||
33-
| v1.1.2 ||||||
34-
| v1.1.1 ||||||
35-
| v1.1.0 ||||||
36-
| v1.0.0 ||||||
32+
| [v1.1.3](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.1.3) ||||||
33+
| [v1.1.2](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.1.2) ||||||
34+
| [v1.1.1](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.1.1) ||||||
35+
| [v1.1.0](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.1.0) ||||||
36+
| [v1.0.0](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.0.0) ||||||
3737

3838
# Frameworks, Platforms and Libraries
3939

4040
[![PHP](https://img.shields.io/badge/php-%23777BB4.svg?style=for-the-badge&logo=php&logoColor=white)](https://www.php.net/)
4141
[![Laravel](https://img.shields.io/badge/laravel-%23FF2D20.svg?style=for-the-badge&logo=laravel&logoColor=white)](https://laravel.com/docs/master)
42-
[![Gitbook](https://img.shields.io/badge/GitBook-7B36ED?style=for-the-badge&logo=gitbook&logoColor=white)](https://www.gitbook.com/)
4342

4443
# Documentation
4544

46-
You can find all the documentation of this package on this link : [Laravel Unit Tests documentation](https://docs-laravel-unit-tests.alexis-gousseau.com).
45+
You can find all the documentation of this package on this link : [Laravel Unit Tests documentation](https://doc-laravel-unit-tests.alexis-gousseau.com).
4746

4847
# Contributing
4948

5049
### Create a task
5150

5251
You can create a [new issue](https://github.com/alexis-gss/laravel-unit-tests/issues/new/choose) with a specific templates : bug or feature.
5352

54-
Once your code is working, please run the following commands `./vendor/bin/phpstan`, `./vendor/bin/phpcs` to verify that your code is following the same coding standards (in all cases, there is github actions that check this part).
53+
Once your code is working, please run the following commands `composer run phpcs`, `composer run phpstan` to verify that your code is following the same coding standards (in all cases, there is github actions that check this part).
5554

5655
### Fixing a Bug
5756

@@ -63,7 +62,7 @@ When implementing a feature please create an issue first explaining your idea an
6362

6463
# Changelog
6564

66-
Latest version v1.1.2.
65+
Latest version [v1.1.3](https://github.com/alexis-gss/laravel-activity-logs/releases/tag/v1.1.3).
6766

6867
See the [CHANGELOG.md](CHANGELOG.md) file for details.
6968

composer.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Test CRUDs assertions in Laravel project.",
44
"type": "library",
55
"license": "MIT",
6-
"version": "1.1.2",
6+
"version": "1.1.3",
77
"authors": [
88
{
99
"name": "Alexis Gousseau",
@@ -36,6 +36,14 @@
3636
"LaravelUnitTests\\": "src/"
3737
}
3838
},
39+
"scripts": {
40+
"phpcs": [
41+
"./vendor/bin/phpcs"
42+
],
43+
"phpstan": [
44+
"./vendor/bin/phpstan"
45+
]
46+
},
3947
"config": {
4048
"sort-packages": true,
4149
"allow-plugins": {

0 commit comments

Comments
 (0)