Skip to content

Commit

Permalink
Merge pull request #238 from cyrildewit/release/v5.2.1
Browse files Browse the repository at this point in the history
Release v5.2.1
  • Loading branch information
cyrildewit authored Sep 22, 2020
2 parents e113246 + 671c1f0 commit 7752049
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 11 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/run-tests-L8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: run-tests-L8

on: [push]

jobs:
tests:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4]
laravel: [^8.0]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: ^8.0
testbench: ^6.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: xdebug

- name: Setup Memcached
uses: niden/actions-memcached@v7

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "fzaninotto/faker:^1.9.1" "laravel/legacy-factories:^1.0.5" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit --verbose

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./tmp/clover.xml
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [v5.2.1] (2020-09-22)

### Changed

- Add support for Laravel 8

## [v5.2.0]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Support for Lumen is not maintained!

| Version | Illuminate | Status | PHP Version |
|---------|---------------|----------------|-------------|
| ^5.0 | 6.x.x - 7.x.x | Active support | >= 7.2.0 |
| ^5.0 | 6.x.x - 8.x.x | Active support | >= 7.2.0 |
| ^4.0 | 5.5.x - 5.8.x | Only bug fixes | >= 7.1.0 |
| ^3.0 | 5.5.x - 5.8.x | End of life | >= 7.1.0 |
| ^2.0 | 5.5.x - 5.7.x | End of life | >= 7.0.0 |
Expand Down
19 changes: 9 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"license": "MIT",
"homepage": "https://github.com/cyrildewit/eloquent-viewable",
"keywords": [
"cyrildewit",
"laravel",
"eloquent",
"views",
Expand All @@ -25,20 +24,20 @@
],
"require": {
"php": "^7.2",
"illuminate/cache": "^6.0|^7.0",
"illuminate/contracts": "^6.0|^7.0",
"illuminate/cookie": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/http": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/cache": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/cookie": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"jaybizzle/crawler-detect": "^1.0",
"nesbot/carbon": "^2.0"
},
"require-dev": {
"illuminate/config": "^6.0|^7.0",
"illuminate/config": "^6.0|^7.0|^8.0",
"mockery/mockery": "^1.2.4",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.4"
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.4|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7752049

Please sign in to comment.