Skip to content

Commit e8d171a

Browse files
committed
build: bump orchestra/testbench to 8
1 parent 9fda9c7 commit e8d171a

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/coverage
33
composer.phar
44
composer.lock
5+
/.phpunit.cache

composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
},
2424
"require-dev": {
2525
"nunomaduro/larastan": "^2.4",
26-
"orchestra/testbench": "^7.21",
26+
"orchestra/testbench": "^8",
2727
"yajra/laravel-datatables-html": "^9.3.4|^10"
2828
},
2929
"suggest": {
30+
"yajra/laravel-datatables-export": "Plugin for server-side exporting using livewire and queue worker.",
3031
"yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
3132
"yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables.",
3233
"yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
@@ -64,6 +65,12 @@
6465
"scripts": {
6566
"test": "vendor/bin/phpunit"
6667
},
67-
"minimum-stability": "dev",
68-
"prefer-stable": true
68+
"minimum-stability": "stable",
69+
"prefer-stable": true,
70+
"funding": [
71+
{
72+
"type": "github",
73+
"url": "https://github.com/sponsors/yajra"
74+
}
75+
]
6976
}

phpunit.xml.dist

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
>
12-
<testsuites>
13-
<testsuite name="Package Test Suite">
14-
<directory suffix=".php">./tests/</directory>
15-
</testsuite>
16-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<testsuites>
4+
<testsuite name="Package Test Suite">
5+
<directory suffix=".php">./tests/</directory>
6+
<exclude>./tests/TestCase.php</exclude>
7+
<exclude>./tests/Models</exclude>
8+
<exclude>./tests/Formatters</exclude>
9+
<exclude>./tests/Http</exclude>
10+
</testsuite>
11+
</testsuites>
1712
</phpunit>

0 commit comments

Comments
 (0)