Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
SupianIDz committed Sep 22, 2023
1 parent 675939b commit 90cb2ad
Show file tree
Hide file tree
Showing 22 changed files with 5,813 additions and 17,635 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ vendor
node_modules

# Locked File
yarn.lock
composer.lock

# PHP Unit
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion config/impersonate.php
Original file line number Diff line number Diff line change
Expand Up @@ -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),
],
];
9 changes: 6 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
>
<testsuites>
<testsuite name="default">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage/>

<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<source>
<include>
<directory>src</directory>
<directory suffix=".php">src</directory>
</include>
</source>

<php>
<env name="APP_KEY" value="base64:qLi84QDXUtGMaZctN3wHG12wLrKq1iXvjFfJBExBOJI="/>
</php>
Expand Down
Loading

0 comments on commit 90cb2ad

Please sign in to comment.