Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit dbf3acb

Browse files
authored
Support for PHP 8.2 (#97)
1 parent 2049254 commit dbf3acb

File tree

3 files changed

+13
-23
lines changed

3 files changed

+13
-23
lines changed

.github/workflows/run-tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,13 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.0, 7.4]
12-
laravel: [9.*, 8.*]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [9.*]
1313
framework: [tailwind, tailwind-2, tailwind-forms-simple, bootstrap-4, bootstrap-5]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 9.*
1717
testbench: 7.*
18-
- laravel: 8.*
19-
testbench: 6.*
20-
exclude:
21-
- laravel: 9.*
22-
php: 7.4
2318

2419
name: P${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }} - Front-end Framework ${{ matrix.framework }}
2520

README.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
A set of Blade components to rapidly build forms with [Tailwind CSS v1](https://tailwindcss-custom-forms.netlify.app), [Tailwind CSS v2](https://tailwindcss-forms.vercel.app), [Bootstrap 4](https://getbootstrap.com/docs/4.0/components/forms/) and [Bootstrap 5](https://getbootstrap.com/docs/5.1/forms/overview/). Supports validation, model binding, default values, translations, includes default vendor styling and fully customizable!
99

10-
## Support this package!
10+
## Sponsor this package!
1111

1212
❤️ 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!
1313

@@ -17,10 +17,6 @@ A set of Blade components to rapidly build forms with [Tailwind CSS v1](https://
1717

1818
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.
1919

20-
## Looking for a Inertia.js / Vue / Laravel Jetstream solution?
21-
22-
Check out [Form Components Pro](https://github.com/protonemedia/form-components-pro)! It's a set of Vue 3 components to rapidly build forms with Tailwind CSS 3. It supports validation, model binding, integrates with Autosize/Choices.js/Flatpickr, includes default vendor styling and is fully customizable! Even better in conjunction with Laravel Jetstream + Inertia.js.
23-
2420
## Features
2521

2622
### 📺 Want to see this package in action? Join the live stream on November 19 at 14:00 CET: [https://youtu.be/7eNZS4U7xyM](https://youtu.be/7eNZS4U7xyM)
@@ -40,12 +36,10 @@ Check out [Form Components Pro](https://github.com/protonemedia/form-components-
4036
* Components classes and Blade views fully customizable.
4137
* Support for prefixing the components.
4238

43-
Looking for Inertia/Vue.js support? Check out [Form Components Pro](https://github.com/protonemedia/form-components-pro)
44-
4539
## Requirements
4640

47-
* PHP 7.4 or higher
48-
* Laravel 8.0 or 9.0
41+
* PHP 8.0 or higher
42+
* Laravel 9.0
4943

5044
## Installation
5145

composer.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,18 @@
2929
}
3030
],
3131
"require": {
32-
"php": "^7.4 || ^8.0 || ^8.1",
33-
"illuminate/support": "^8.67 || ^9.0",
34-
"symfony/http-foundation": "^5.1.2 || ^6.0"
32+
"php": "^8.0 || ^8.1 || ^8.2",
33+
"illuminate/support": "^9.0",
34+
"symfony/http-foundation": "^6.0"
3535
},
3636
"require-dev": {
3737
"livewire/livewire": "^2.0",
3838
"mockery/mockery": "^1.3.3",
39-
"orchestra/testbench-browser-kit": "^6.23 || ^7.0",
39+
"nesbot/carbon": "^2.63",
40+
"orchestra/testbench-browser-kit": "^7.0",
4041
"phpunit/phpunit": "^9.5",
41-
"spatie/laravel-translatable": "^4.4 || ^5.0",
42-
"symfony/dom-crawler": "^5.1.14 || ^6.0"
42+
"spatie/laravel-translatable": "^5.0",
43+
"symfony/dom-crawler": "^6.0"
4344
},
4445
"autoload": {
4546
"psr-4": {
@@ -67,4 +68,4 @@
6768
]
6869
}
6970
}
70-
}
71+
}

0 commit comments

Comments
 (0)