Skip to content

Commit

Permalink
Laravel 7 specific release added 🔖
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulhaque committed Nov 14, 2023
1 parent 06f72cd commit 5924dec
Show file tree
Hide file tree
Showing 16 changed files with 282 additions and 1,400 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: [8.x]
branches: [7.x]
# pull_request:
# branches: [master]

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

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.

## 8.0.0 - 2023-11-14
## 7.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 8 users install with.
Laravel 7 users install with.

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

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

0 comments on commit 5924dec

Please sign in to comment.