Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Sep 8, 2020
1 parent ade035d commit a4b238d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 21 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.4, 7.3]
laravel: [6.*, 7.*, 8.*]
php: [7.4]
laravel: [7.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
}
],
"require": {
"php" : "^7.3",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0"
"php" : "^7.4",
"illuminate/support": "^7.0|^8.0",
"illuminate/http": "^7.0|^8.0",
"illuminate/contracts": "^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"spatie/phpunit-snapshot-assertions": "^2.2"
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^5.0|^6.0",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"autoload": {
"psr-4": {
Expand Down
10 changes: 0 additions & 10 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
</report>
</coverage>
<testsuites>
<testsuite name="Spatie Test Suite">
<directory>tests</directory>
Expand Down

0 comments on commit a4b238d

Please sign in to comment.