diff --git a/.gitignore b/.gitignore
index 02e51a4..2a0d6ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,6 @@ vendor
node_modules
# Locked File
-yarn.lock
composer.lock
# PHP Unit
diff --git a/composer.json b/composer.json
index 3d70933..18b3a5d 100644
--- a/composer.json
+++ b/composer.json
@@ -10,11 +10,11 @@
}
],
"require": {
- "laravel/framework": "^10.23"
+ "php": "^8.1"
},
"require-dev": {
"nunomaduro/collision": "^7.8",
- "orchestra/testbench": "^8.10"
+ "orchestra/testbench": "^8.11"
},
"autoload": {
"psr-4": {
diff --git a/config/impersonate.php b/config/impersonate.php
index c2a2b20..ce034c7 100644
--- a/config/impersonate.php
+++ b/config/impersonate.php
@@ -85,6 +85,6 @@
| to wait after a user has stopped typing before sending the request
|
*/
- 'delay' => env('IMPERSONATE_SEARCH_DELAY', 500),
+ 'delay' => env('IMPERSONATE_BOUNCE', 500),
],
];
diff --git a/phpunit.xml b/phpunit.xml
index 79204c8..42a6ecf 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -3,21 +3,24 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
- cacheDirectory=".phpunit.cache"
+ executionOrder="depends,defects"
failOnRisky="true"
failOnWarning="true"
+ colors="true"
>
tests
+
-