diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3104949..43753ec 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,6 @@ name: ci +env: + XDEBUG_MODE: 'coverage' on: push: branches: diff --git a/.gitignore b/.gitignore index 498988f..fbe81f2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /clover.xml /build /vendor +.phpunit.cache/test-results diff --git a/composer.json b/composer.json index e6946a4..deb2de3 100644 --- a/composer.json +++ b/composer.json @@ -10,12 +10,12 @@ ], "require": { "php": "^7.2|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0" + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0", - "phpunit/phpunit": "^8.0|^9.0", - "nunomaduro/larastan": "^0.6|^1.0" + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0", + "phpunit/phpunit": "^8.0|^9.0|^10.0", + "nunomaduro/larastan": "^0.6|^1.0|^2.0" }, "autoload": { "psr-4": { diff --git a/phpunit.xml b/phpunit.xml index c472786..a296110 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,33 +1,26 @@ - - - - ./tests/Unit - - - - - src/ - - - - - - - - - - - - - + + + + src/ + + + + + + + + ./tests/Unit + + + + + + + + + + + +