Skip to content

Commit a4b238d

Browse files
committed
wip
1 parent ade035d commit a4b238d

File tree

3 files changed

+9
-21
lines changed

3 files changed

+9
-21
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [7.4, 7.3]
13-
laravel: [6.*, 7.*, 8.*]
12+
php: [7.4]
13+
laravel: [7.*, 8.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 8.*
1717
testbench: 6.*
1818
- laravel: 7.*
1919
testbench: 5.*
20-
- laravel: 6.*
21-
testbench: 4.*
2220

2321
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2422

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
}
3131
],
3232
"require": {
33-
"php" : "^7.3",
34-
"illuminate/support": "^6.0|^7.0|^8.0",
35-
"illuminate/http": "^6.0|^7.0|^8.0",
36-
"illuminate/contracts": "^6.0|^7.0|^8.0"
33+
"php" : "^7.4",
34+
"illuminate/support": "^7.0|^8.0",
35+
"illuminate/http": "^7.0|^8.0",
36+
"illuminate/contracts": "^7.0|^8.0"
3737
},
3838
"require-dev": {
39-
"phpunit/phpunit": "^8.0",
40-
"orchestra/testbench": "^4.0|^5.0|^6.0",
41-
"spatie/phpunit-snapshot-assertions": "^2.2"
39+
"phpunit/phpunit": "^9.3",
40+
"orchestra/testbench": "^5.0|^6.0",
41+
"spatie/phpunit-snapshot-assertions": "^4.2"
4242
},
4343
"autoload": {
4444
"psr-4": {

phpunit.xml.dist

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">src/</directory>
6-
</include>
7-
<report>
8-
<clover outputFile="build/logs/clover.xml"/>
9-
<html outputDirectory="build/coverage"/>
10-
<text outputFile="build/coverage.txt"/>
11-
</report>
12-
</coverage>
133
<testsuites>
144
<testsuite name="Spatie Test Suite">
155
<directory>tests</directory>

0 commit comments

Comments
 (0)