Skip to content

Commit

Permalink
Allow PHPUnit 11 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick authored Apr 9, 2024
1 parent 6b8ac6e commit c536da3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"laravel/scout": "^8.5 || ^9.1 || ^10.0 || ^11.0",
"laravel/scout": "^8.5 || ^9.1 || ^10.0",
"opensearch-project/opensearch-php": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3 || ^1.4.2",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-mockery": "^1.0",
"phpunit/phpunit": "^9.3.3 || ^10.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0",
"zing/coding-standard": "^6.4 || ^7.0"
},
"autoload": {
Expand Down
6 changes: 5 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache">
<coverage/>
<testsuites>
<testsuite name="Laravel Scout custom engine for OpenSearch Test Suite">
Expand Down

0 comments on commit c536da3

Please sign in to comment.