Skip to content

Commit

Permalink
Merge pull request #114 from kokspflanze/patch-php82
Browse files Browse the repository at this point in the history
Added php 8.3 support
  • Loading branch information
svycka authored Oct 15, 2024
2 parents 8247901 + b1aaa85 commit 356cc93
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
- php-version: 8.2
dependencies: "--prefer-lowest --prefer-stable"
test_coverage: "no"
- php-version: 8.3
dependencies: "--prefer-stable"
test_coverage: "no"
- php-version: 8.3
dependencies: "--prefer-lowest --prefer-stable"
test_coverage: "no"

steps:
- name: Setup PHP
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"require": {
"php": "^7.2 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "^7.2 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-intl": "*",
"laminas/laminas-eventmanager": "^3.1",
"laminas/laminas-http": "^2.7",
Expand Down
2 changes: 1 addition & 1 deletion tests/SlmLocaleTest/Strategy/CookieStrategyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
namespace SlmLocaleTest\Locale;

use Laminas\Http\Header\Cookie;
use Laminas\Http\Request as HttpRequest;
use Laminas\Http\Request as HttpRequest;
use Laminas\Http\Response as HttpResponse;
use PHPUnit\Framework\TestCase;
use SlmLocale\LocaleEvent;
Expand Down
2 changes: 1 addition & 1 deletion tests/SlmLocaleTest/Strategy/QueryStrategyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
*/
namespace SlmLocaleTest\Locale;

use Laminas\Http\Request as HttpRequest;
use Laminas\Http\Request as HttpRequest;
use Laminas\Http\Response as HttpResponse;
use Laminas\Uri\Uri;
use PHPUnit\Framework\TestCase;
Expand Down

0 comments on commit 356cc93

Please sign in to comment.