File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +15
-13
lines changed
Original file line number Diff line number Diff line change 15
15
],
16
16
"require" : {
17
17
"php" : " >=5.5.9" ,
18
- "illuminate/contracts" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
19
- "illuminate/filesystem" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
20
- "illuminate/http" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
21
- "illuminate/routing" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
22
- "illuminate/support" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
23
- "illuminate/view" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" ,
18
+ "illuminate/contracts" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
19
+ "illuminate/filesystem" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
20
+ "illuminate/http" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
21
+ "illuminate/routing" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
22
+ "illuminate/support" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
23
+ "illuminate/view" : " 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0 " ,
24
24
"mrclay/minify" : " ^2.2|^3.0"
25
25
},
26
26
"require-dev" : {
27
27
"graham-campbell/testbench" : " ^3.1|^4.0|^5.0" ,
28
28
"mockery/mockery" : " ^0.9.4|^1.0" ,
29
- "phpunit/phpunit" : " ^4.8|^5.0|^6.0|^7.0|^8.0"
29
+ "phpunit/phpunit" : " ^4.8|^5.0|^6.0|^7.0|^8.0|^9.0 "
30
30
},
31
31
"autoload" : {
32
32
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
4
+ backupGlobals =" false"
3
5
backupStaticAttributes =" false"
4
6
beStrictAboutTestsThatDoNotTestAnything =" true"
5
7
beStrictAboutOutputDuringTests =" true"
20
22
<directory suffix =" Test.php" >./tests</directory >
21
23
</testsuite >
22
24
</testsuites >
23
- <filter >
24
- <whitelist processUncoveredFilesFromWhitelist = " true " >
25
+ <coverage processUncoveredFiles = " true " >
26
+ <include >
25
27
<directory suffix =" .php" >./src</directory >
26
- </whitelist >
27
- </filter >
28
+ </include >
29
+ </coverage >
28
30
</phpunit >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ abstract class AbstractTestCase extends AbstractPackageTestCase
29
29
*
30
30
* @return string
31
31
*/
32
- protected function getServiceProviderClass ($ app )
32
+ protected function getServiceProviderClass ()
33
33
{
34
34
return HTMLMinServiceProvider::class;
35
35
}
You can’t perform that action at this time.
0 commit comments