From 4c0988298911f972c4d5f57efc6e5e06b77539f6 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Thu, 26 Mar 2026 17:08:37 +0100 Subject: [PATCH 1/2] Update PHP_CodeSniffer repository link --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8fe4c06..0b4dd1bd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,6 +35,6 @@ If you need any help with this please don't hesitate to ask. ## Requirements -- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer). +- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer). - **Tlint styles** - Tighten-specific styles. Tlint is built for apps, so there are some settings that might not make sense in a package, but [download Tlint](https://github.com/tightenco/tlint) and run it on your pull requests to see if it suggests any reasonable changes. - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. From cb22616d4d7ed5d0ecd0ffe9ede00a400c5f60d2 Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Thu, 9 Apr 2026 12:22:40 -0300 Subject: [PATCH 2/2] Fix expected latest postgres version --- tests/Feature/DockerTagsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/DockerTagsTest.php b/tests/Feature/DockerTagsTest.php index cda099ec..8f939f86 100644 --- a/tests/Feature/DockerTagsTest.php +++ b/tests/Feature/DockerTagsTest.php @@ -41,7 +41,7 @@ public function it_sorts_the_versions_naturally() $tags = collect($dockerTags->getTags()); $this->assertEquals('latest', $tags->shift()); - $this->assertEquals('18.1', $tags->shift()); + $this->assertEquals('18.3', $tags->shift()); } /**