Skip to content

Commit

Permalink
Merge branch 'release/6.0.37'
Browse files Browse the repository at this point in the history
* release/6.0.37:
  compiled assets
  laravel 9 compatibility
  fixes laravel 9/php exclusion
  exclude Laravel 9 tests on PHP v7
  Update GitHub Actions for Laravel 9
  Bump dependencies for Laravel 9
  Bump nanoid from 3.1.30 to 3.2.0
  Bump follow-redirects from 1.14.6 to 1.14.7
  • Loading branch information
austintoddj committed Feb 9, 2022
2 parents b806f0d + 38169f9 commit 5f549d0
Show file tree
Hide file tree
Showing 8 changed files with 1,293 additions and 1,226 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,26 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
laravel: [^6.0, ^7.0, ^8.0]
php: [7.3, 7.4, 8.0, 8.1]
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
include:
- laravel: ^6.0
testbench: ^4.0
- laravel: ^7.0
testbench: ^5.0
- laravel: ^8.0
testbench: ^6.0
- laravel: ^9.0
testbench: ^7.0
exclude:
- php: 7.3
laravel: ^9.0
- php: 7.4
laravel: ^9.0
- php: 8.1
laravel: ^6.0
- php: 8.1
laravel: ^7.0

name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}

Expand Down
12 changes: 9 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "austintoddj/canvas",
"description": "A Laravel publishing platform",
"keywords": ["blog", "canvas", "laravel", "publishing", "platform"],
"keywords": [
"blog",
"canvas",
"laravel",
"publishing",
"platform"
],
"license": "MIT",
"homepage": "https://trycanvas.app",
"support": {
Expand All @@ -17,12 +23,12 @@
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"laravel/framework": "^6.0|^7.0|^8.0"
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*/

/*!
* FilePondPluginImageValidateSize 1.2.6
* FilePondPluginImageValidateSize 1.2.7
* Licensed under MIT, https://opensource.org/licenses/MIT/
* Please visit https://pqina.nl/filepond/ for details.
*/
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=9e5dee61c8dd6fea9532",
"/css/app.css": "/css/app.css?id=9dcde57dde05a868a057"
"/js/app.js": "/js/app.js?id=fc965861f0fae23e0488",
"/css/app.css": "/css/app.css?id=2b4576c721d635886915"
}
2,480 changes: 1,265 additions & 1,215 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 5f549d0

Please sign in to comment.