Skip to content

Commit

Permalink
Preparing 11.x release ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulhaque committed Mar 14, 2024
1 parent a3bfa1b commit 00509cc
Show file tree
Hide file tree
Showing 14 changed files with 4,539 additions and 4,272 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: [10.x]
branches: [11.x]
# pull_request:
# branches: [master]

Expand All @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1]
laravel: [10.*]
php: [8.2, 8.3]
laravel: [11.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

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

Expand Down
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 10 users install with.
Laravel 11 users install with.

```bash
composer require rahulhaque/laravel-filepond:"^10"
composer require rahulhaque/laravel-filepond:"^11.0"
```

Publish the configuration and migration files.
Expand Down
33 changes: 26 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10"
"php": "^8.2",
"laravel/framework": "^11.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"league/flysystem-aws-s3-v3": "^3.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.1"
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
Expand All @@ -33,12 +33,31 @@
},
"autoload-dev": {
"psr-4": {
"RahulHaque\\Filepond\\Tests\\": "tests"
"RahulHaque\\Filepond\\Tests\\": "tests",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve"
],
"lint": [
"@php vendor/bin/pint",
"@php vendor/bin/phpstan analyse"
]
},
"config": {
"sort-packages": true
Expand All @@ -53,4 +72,4 @@
}
}
}
}
}
Loading

0 comments on commit 00509cc

Please sign in to comment.