Skip to content

Commit

Permalink
Laravel 8 specific release added 🔖
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulhaque committed Nov 13, 2023
1 parent b71d3f4 commit 06f72cd
Show file tree
Hide file tree
Showing 8 changed files with 836 additions and 1,566 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: run-tests

on:
push:
branches: [9.x]
branches: [8.x]
# pull_request:
# branches: [master]

Expand All @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.0.2]
laravel: [9.*]
php: [8.0, 7.3]
laravel: [8.*]
stability: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*

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

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to `laravel-filepond` will be documented in this file.

## 9.0.0 - 2023-11-14
## 8.0.0 - 2023-11-14

- Moved to major versioning to support each Laravel release. ✨
- Removed unused dependencies to reduce conflict.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Support the development with a :star: to let others know it worked for you.

## Installation

Laravel 9 users install with.
Laravel 8 users install with.

```bash
composer require rahulhaque/laravel-filepond:"^9"
composer require rahulhaque/laravel-filepond:"^8"
```

Publish the configuration and migration files.
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@
}
],
"require": {
"php": "^8.0.2"
"php": "^7.3|^8.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"league/flysystem-aws-s3-v3": "^3.0",
"orchestra/testbench": "^7.0",
"league/flysystem-aws-s3-v3": "^1.0",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
Expand Down
Loading

0 comments on commit 06f72cd

Please sign in to comment.