File tree Expand file tree Collapse file tree 3 files changed +21
-18
lines changed Expand file tree Collapse file tree 3 files changed +21
-18
lines changed Original file line number Diff line number Diff line change 2
2
/coverage
3
3
composer.phar
4
4
composer.lock
5
+ /.phpunit.cache
Original file line number Diff line number Diff line change 23
23
},
24
24
"require-dev" : {
25
25
"nunomaduro/larastan" : " ^2.4" ,
26
- "orchestra/testbench" : " ^7.21 " ,
26
+ "orchestra/testbench" : " ^8 " ,
27
27
"yajra/laravel-datatables-html" : " ^9.3.4|^10"
28
28
},
29
29
"suggest" : {
30
+ "yajra/laravel-datatables-export" : " Plugin for server-side exporting using livewire and queue worker." ,
30
31
"yajra/laravel-datatables-buttons" : " Plugin for server-side exporting of dataTables." ,
31
32
"yajra/laravel-datatables-html" : " Plugin for server-side HTML builder of dataTables." ,
32
33
"yajra/laravel-datatables-fractal" : " Plugin for server-side response using Fractal." ,
64
65
"scripts" : {
65
66
"test" : " vendor/bin/phpunit"
66
67
},
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
+ ]
69
76
}
Original file line number Diff line number Diff line change 1
1
<?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 >
17
12
</phpunit >
You can’t perform that action at this time.
0 commit comments