Skip to content

Commit

Permalink
Merge pull request #35 from offline-agency/add-support-for-laravel-7-8
Browse files Browse the repository at this point in the history
Add support for laravel 7-8
  • Loading branch information
Giacomo Fabbian authored May 17, 2021
2 parents 7473f93 + 2104af4 commit bf12410
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
12 changes: 5 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit bf12410

Please sign in to comment.