diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2b6a9b0..6588962 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - php: ['7.2', '7.3', '7.4'] + php: ['7.2', '7.3', '7.4', '8.0'] os: ['ubuntu-latest'] name: PHP v${{ matrix.php }} @@ -41,12 +41,3 @@ jobs: - name: Run tests run: | ./vendor/bin/phpunit --coverage-clover coverage.xml - - - name: Send coveralls - run: vendor/bin/coveralls coverage.xml - env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: false diff --git a/composer.json b/composer.json index df6c715..21b22a3 100644 --- a/composer.json +++ b/composer.json @@ -18,18 +18,16 @@ "require": { "php": ">=7.1", "ext-json": "*", - "illuminate/support": "^5.8|^6.0", - "illuminate/container": "^5.8|^6.0", - "illuminate/database": "^5.8|^6.20", - "illuminate/events": "^5.8|^6.0" + "illuminate/support": "^5.8|^6.0|^7.0|^8.0", + "illuminate/container": "^5.8|^6.0|^7.0|^8.0", + "illuminate/database": "^5.8|^6.20|^7.0|^8.0", + "illuminate/events": "^5.8|^6.0|^7.0|^8.0" }, "require-dev": { "phpunit/phpunit": "^6.0|^7.0|^8.0", "orchestra/testbench": "^3.1|^4.0", "mockery/mockery": "^1.0", - "doctrine/dbal": "^2.5", - "phpunit/phpcov": "^6.0", - "cedx/coveralls": "^11.2" + "doctrine/dbal": "^2.5" }, "autoload": { "psr-4": {