From bb07d403e8371badff1154655349b7ef6ffd9102 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Mar 2024 12:39:03 +0100 Subject: [PATCH 1/4] L11 --- .github/workflows/run-tests.yml | 6 ++++-- README.md | 17 ++++------------- composer.json | 8 ++++---- 3 files changed, 12 insertions(+), 19 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 22251a2..f476cf4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,11 +12,13 @@ jobs: strategy: fail-fast: true matrix: - php: [8.3, 8.2, 8.1] - laravel: [10.*] + php: [8.3, 8.2] + laravel: [11.*, 10.*] os: [ubuntu-latest, windows-latest] stability: [prefer-lowest, prefer-stable] include: + - laravel: 11.* + testbench: 9.* - laravel: 10.* testbench: 8.* diff --git a/README.md b/README.md index ea019df..bed5bc0 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,6 @@ ❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help! -## Laravel Splade - -**Did you hear about Laravel Splade? 🤩** - -It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://github.com/protonemedia/laravel-splade) provides a super easy way to build Single Page Applications using Blade templates. Besides that magic SPA-feeling, it comes with more than ten components to sparkle your app and make it interactive, all without ever leaving Blade. - ## Installation You can install the package via composer: @@ -212,19 +206,16 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details. ## Other Laravel packages -* [`Laravel Analytics Event Tracking`](https://github.com/protonemedia/laravel-analytics-event-tracking): Laravel package to easily send events to Google Analytics. * [`Laravel Blade On Demand`](https://github.com/protonemedia/laravel-blade-on-demand): Laravel package to compile Blade templates in memory. * [`Laravel Cross Eloquent Search`](https://github.com/protonemedia/laravel-cross-eloquent-search): Laravel package to search through multiple Eloquent models. * [`Laravel Eloquent Scope as Select`](https://github.com/protonemedia/laravel-eloquent-scope-as-select): Stop duplicating your Eloquent query scopes and constraints in PHP. This package lets you re-use your query scopes and constraints by adding them as a subquery. -* [`Laravel Eloquent Where Not`](https://github.com/protonemedia/laravel-eloquent-where-not): This Laravel package allows you to flip/invert an Eloquent scope, or really any query constraint. -* [`Laravel Form Components`](https://github.com/protonemedia/laravel-form-components): Blade components to rapidly build forms with Tailwind CSS Custom Forms and Bootstrap 4. Supports validation, model binding, default values, translations, includes default vendor styling and fully customizable! -* [`Laravel MinIO Testing Tools`](https://github.com/protonemedia/laravel-minio-testing-tools): This package provides a trait to run your tests against a MinIO S3 server. +* [`Laravel FFMpeg`](https://github.com/protonemedia/laravel-ffmpeg): This package provides an integration with FFmpeg for Laravel. The storage of the files is handled by Laravel's Filesystem. +* [`Laravel MinIO Testing Tools`](https://github.com/protonemedia/laravel-minio-testing-tools): Run your tests against a MinIO S3 server. * [`Laravel Mixins`](https://github.com/protonemedia/laravel-mixins): A collection of Laravel goodies. * [`Laravel Paddle`](https://github.com/protonemedia/laravel-paddle): Paddle.com API integration for Laravel with support for webhooks/events. -* [`Laravel Splade`](https://github.com/protonemedia/laravel-splade): Splade provides a super easy way to build Single Page Applications using Blade templates. Besides that magic SPA-feeling, it comes with more than ten components to sparkle your app and make it interactive, all without ever leaving Blade. +* [`Laravel Task Runner`](https://github.com/protonemedia/laravel-task-runner): Write Shell scripts like Blade Components and run them locally or on a remote server. * [`Laravel Verify New Email`](https://github.com/protonemedia/laravel-verify-new-email): This package adds support for verifying new email addresses: when a user updates its email address, it won't replace the old one until the new one is verified. -* [`Laravel WebDAV`](https://github.com/protonemedia/laravel-webdav): WebDAV driver for Laravel's Filesystem. -* [`Laravel XSS Protection Middleware`](https://github.com/protonemedia/laravel-xss-protection): Laravel Middleware to protect your app against Cross-site scripting (XSS). It sanitizes request input by utilising the Laravel Security package, and it can sanatize Blade echo statements as well. +* [`Laravel XSS Protection`](https://github.com/protonemedia/laravel-xss-protection): Laravel Middleware to protect your app against Cross-site scripting (XSS). It sanitizes request input, and it can sanatize Blade echo statements. ## Security diff --git a/composer.json b/composer.json index d76f4d1..a9ba171 100644 --- a/composer.json +++ b/composer.json @@ -16,16 +16,16 @@ } ], "require": { - "php": "^8.1|^8.2|^8.3", - "illuminate/contracts": "^10.0", + "php": "^8.2|^8.3", + "illuminate/contracts": "^10.0|^11.0", "laravel/dusk": "^7.0", "spatie/invade": "^1.1" }, "require-dev": { "laravel/pint": "^1.0", "nesbot/carbon": "^2.66", - "nunomaduro/collision": "^6.0", - "orchestra/testbench": "^8.0", + "nunomaduro/collision": "^6.0|^7.0", + "orchestra/testbench": "^8.0|^9.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.1", "phpunit/phpunit": "^10.4" From 7ad7d5ff05d06c64eadbd352de4ec579463d1eab Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Mar 2024 12:42:14 +0100 Subject: [PATCH 2/4] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index a9ba171..87ffd40 100644 --- a/composer.json +++ b/composer.json @@ -26,8 +26,8 @@ "nesbot/carbon": "^2.66", "nunomaduro/collision": "^6.0|^7.0", "orchestra/testbench": "^8.0|^9.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", + "pestphp/pest": "^2.0", + "pestphp/pest-plugin-laravel": "^2.0", "phpunit/phpunit": "^10.4" }, "autoload": { From 643cc1a5abeb5317dae7c6dbd0268249628e01f7 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Mar 2024 12:43:35 +0100 Subject: [PATCH 3/4] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 87ffd40..7fc5295 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "require-dev": { "laravel/pint": "^1.0", "nesbot/carbon": "^2.66", - "nunomaduro/collision": "^6.0|^7.0", + "nunomaduro/collision": "^7.0|^8.0", "orchestra/testbench": "^8.0|^9.0", "pestphp/pest": "^2.0", "pestphp/pest-plugin-laravel": "^2.0", From c10298a6e19a2e793f0e00edf73cf47ae15ef466 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Mar 2024 15:22:07 +0100 Subject: [PATCH 4/4] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7fc5295..bda7053 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "require": { "php": "^8.2|^8.3", "illuminate/contracts": "^10.0|^11.0", - "laravel/dusk": "^7.0", + "laravel/dusk": "^7.0|^8.0", "spatie/invade": "^1.1" }, "require-dev": {