This repository was archived by the owner on Jan 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ matrix:
14
14
env : LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'FORM_COMPONENTS_FRAMEWORK='bootstrap-4'
15
15
- php : 7.4
16
16
env : LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'FORM_COMPONENTS_FRAMEWORK='bootstrap-4'
17
+ - php : 7.4
18
+ env : LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest' FORM_COMPONENTS_FRAMEWORK='tailwind'
19
+ - php : 7.4
20
+ env : LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'FORM_COMPONENTS_FRAMEWORK='tailwind'
21
+ - php : 7.4
22
+ env : LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest'FORM_COMPONENTS_FRAMEWORK='bootstrap-4'
23
+ - php : 7.4
24
+ env : LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'FORM_COMPONENTS_FRAMEWORK='bootstrap-4'
17
25
fast_finish : true
18
26
19
27
before_install :
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-form-components ` will be documented in this file
4
4
5
- ## 1.2 .0 - 2020-08-01
5
+ ## 1.3 .0 - 2020-09-04
6
6
7
- - Validation support for Laravel Livewire
8
- - Make hidden inputs visually hidden
7
+ - Support for Laravel 8.0
8
+
9
+ ## 1.2.0 - 2020-08-20
10
+
11
+ - Form method spoofing to support PUT, PATCH and DELETE actions.
9
12
10
13
## 1.1.0 - 2020-07-18
11
14
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ A set of Blade components to rapidly build forms with [Tailwind CSS Custom Forms
24
24
25
25
## Requirements
26
26
27
- * PHP 7.4 + Laravel 7.0 only
27
+ * PHP 7.4 + Laravel 7.0 and higher
28
28
29
29
## Installation
30
30
Original file line number Diff line number Diff line change 27
27
],
28
28
"require" : {
29
29
"php" : " ^7.4" ,
30
- "illuminate/support" : " ^7.22.4"
30
+ "illuminate/support" : " ^7.22.4 || ^8.0 "
31
31
},
32
32
"require-dev" : {
33
33
"livewire/livewire" : " ^1.3.2" ,
34
- "orchestra/testbench-browser-kit" : " ^5.1" ,
34
+ "orchestra/testbench-browser-kit" : " ^5.1 || ^6.0 " ,
35
35
"phpunit/phpunit" : " ^8.5" ,
36
36
"spatie/laravel-translatable" : " ^4.4"
37
37
},
52
52
"config" : {
53
53
"sort-packages" : true
54
54
},
55
+ "minimum-stability" : " dev" ,
56
+ "prefer-stable" : true ,
55
57
"extra" : {
56
58
"laravel" : {
57
59
"providers" : [
You can’t perform that action at this time.
0 commit comments