Skip to content

Commit dd60423

Browse files
committed
L11
1 parent 739de27 commit dd60423

File tree

3 files changed

+13
-17
lines changed

3 files changed

+13
-17
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2, 8.1]
12-
laravel: [10.*]
11+
php: [8.3, 8.2]
12+
laravel: [11.*, 10.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 11.*
16+
testbench: 9.*
1517
- laravel: 10.*
1618
testbench: 8.*
1719

README.md

+5-11
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,12 @@ This package allows you to seamlessly use the [Browser Kit features](https://git
1010

1111
## Requirements
1212
* Laravel 10
13-
* PHP 8.1 or higher
13+
* PHP 8.2 or higher
1414

1515
## Sponsor this package!
1616

1717
❤️ 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!
1818

19-
## Laravel Splade
20-
21-
**Did you hear about Laravel Splade? 🤩**
22-
23-
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.
24-
2519
## Installation
2620

2721
You can install the package via composer:
@@ -64,17 +58,17 @@ $ composer test
6458

6559
## Other Laravel packages
6660

67-
* [`Laravel Analytics Event Tracking`](https://github.com/protonemedia/laravel-analytics-event-tracking): Laravel package to easily send events to Google Analytics.
6861
* [`Laravel Blade On Demand`](https://github.com/protonemedia/laravel-blade-on-demand): Laravel package to compile Blade templates in memory.
6962
* [`Laravel Cross Eloquent Search`](https://github.com/protonemedia/laravel-cross-eloquent-search): Laravel package to search through multiple Eloquent models.
7063
* [`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.
71-
* [`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.
7264
* [`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.
73-
* [`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!
65+
* [`Laravel MinIO Testing Tools`](https://github.com/protonemedia/laravel-minio-testing-tools): Run your tests against a MinIO S3 server.
7466
* [`Laravel Mixins`](https://github.com/protonemedia/laravel-mixins): A collection of Laravel goodies.
7567
* [`Laravel Paddle`](https://github.com/protonemedia/laravel-paddle): Paddle.com API integration for Laravel with support for webhooks/events.
68+
* [`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.
7669
* [`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.
77-
* [`Laravel WebDAV`](https://github.com/protonemedia/laravel-webdav): WebDAV driver for Laravel's Filesystem.
70+
* [`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.
71+
7872
## Contributing
7973

8074
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
"homepage": "https://github.com/protonemedia/laravel-browser-kit-macro",
99
"type": "library",
1010
"require": {
11-
"php": "^8.1 || ^8.2 || ^8.3",
11+
"php": "^8.3 || ^8.2",
1212
"laravel/browser-kit-testing": "^7.0",
13-
"illuminate/http": "^10.0",
14-
"illuminate/support": "^10.0",
13+
"illuminate/http": "^10.0|^11.0",
14+
"illuminate/support": "^10.0|^11.0",
1515
"symfony/dom-crawler": "^6.0"
1616
},
1717
"require-dev": {
18-
"orchestra/testbench": "^8.0",
18+
"orchestra/testbench": "^8.0|^9.0",
1919
"phpunit/phpunit": "^10.4"
2020
},
2121
"license": "MIT",

0 commit comments

Comments
 (0)