Skip to content

Commit

Permalink
Merge pull request #6 from tehwave/laravel-8-and-php-8-support
Browse files Browse the repository at this point in the history
Laravel 8 and PHP 8 support
  • Loading branch information
tehwave authored Nov 5, 2020
2 parents a422864 + 6009d2f commit aae7704
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
13 changes: 10 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
Expand All @@ -10,14 +9,22 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [6.*, 7.*]
php: [7.2, 7.3, 7.4, 8.0]
laravel: [6.*, 7.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 8.*
php: 7.2
# Some issues with Mockery?
- php: 8.0
dependency-version: prefer-lowest
include:
- laravel: 6.*
testbench: 4.*
- laravel: 7.*
testbench: 5.*
- laravel: 8.*
testbench: ^6.3
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![](https://banners.beyondco.de/Laravel%20Shortcodes.png?theme=light&packageName=tehwave%2Flaravel-shortcodes&pattern=wiggle&style=style_1&description=Simple%2C+elegant+WordPress-like+Shortcodes+the+Laravel+way.&md=1&showWatermark=1&fontSize=100px&images=https%3A%2F%2Flaravel.com%2Fimg%2Flogomark.min.svg)

# Laravel Shortcodes

Simple, elegant WordPress-like Shortcodes the Laravel way.
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
}
],
"require": {
"php": "^7.2.5",
"illuminate/console": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0"
"php": "^7.2.5|^8.0",
"illuminate/console": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
"phpunit/phpunit": "^8.0"
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.3",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit aae7704

Please sign in to comment.