Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 79d5af0

Browse filesBrowse files
authored
Support Laravel 9 (#167)
1 parent 6c00109 commit 79d5af0
Copy full SHA for 79d5af0

File tree

Expand file treeCollapse file tree

3 files changed

+15
-13
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+15
-13
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
],
1616
"require": {
1717
"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",
2424
"mrclay/minify": "^2.2|^3.0"
2525
},
2626
"require-dev": {
2727
"graham-campbell/testbench": "^3.1|^4.0|^5.0",
2828
"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"
3030
},
3131
"autoload": {
3232
"psr-4": {

‎phpunit.xml.dist

Copy file name to clipboardExpand all lines: phpunit.xml.dist
+7-5Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?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"
35
backupStaticAttributes="false"
46
beStrictAboutTestsThatDoNotTestAnything="true"
57
beStrictAboutOutputDuringTests="true"
@@ -20,9 +22,9 @@
2022
<directory suffix="Test.php">./tests</directory>
2123
</testsuite>
2224
</testsuites>
23-
<filter>
24-
<whitelist processUncoveredFilesFromWhitelist="true">
25+
<coverage processUncoveredFiles="true">
26+
<include>
2527
<directory suffix=".php">./src</directory>
26-
</whitelist>
27-
</filter>
28+
</include>
29+
</coverage>
2830
</phpunit>

‎tests/AbstractTestCase.php

Copy file name to clipboardExpand all lines: tests/AbstractTestCase.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ abstract class AbstractTestCase extends AbstractPackageTestCase
2929
*
3030
* @return string
3131
*/
32-
protected function getServiceProviderClass($app)
32+
protected function getServiceProviderClass()
3333
{
3434
return HTMLMinServiceProvider::class;
3535
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.