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

Commit eadd741

Browse files
authored
Merge pull request #12 from protonemedia/laravel-8.0
Laravel 8.0
2 parents 452a209 + 6a1e34a commit eadd741

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ matrix:
1414
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'FORM_COMPONENTS_FRAMEWORK='bootstrap-4'
1515
- php: 7.4
1616
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'
1725
fast_finish: true
1826

1927
before_install:

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
All notable changes to `laravel-form-components` will be documented in this file
44

5-
## 1.2.0 - 2020-08-01
5+
## 1.3.0 - 2020-09-04
66

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.
912

1013
## 1.1.0 - 2020-07-18
1114

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A set of Blade components to rapidly build forms with [Tailwind CSS Custom Forms
2424

2525
## Requirements
2626

27-
* PHP 7.4 + Laravel 7.0 only
27+
* PHP 7.4 + Laravel 7.0 and higher
2828

2929
## Installation
3030

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
],
2828
"require": {
2929
"php": "^7.4",
30-
"illuminate/support": "^7.22.4"
30+
"illuminate/support": "^7.22.4 || ^8.0"
3131
},
3232
"require-dev": {
3333
"livewire/livewire": "^1.3.2",
34-
"orchestra/testbench-browser-kit": "^5.1",
34+
"orchestra/testbench-browser-kit": "^5.1 || ^6.0",
3535
"phpunit/phpunit": "^8.5",
3636
"spatie/laravel-translatable": "^4.4"
3737
},
@@ -52,6 +52,8 @@
5252
"config": {
5353
"sort-packages": true
5454
},
55+
"minimum-stability": "dev",
56+
"prefer-stable": true,
5557
"extra": {
5658
"laravel": {
5759
"providers": [

0 commit comments

Comments
 (0)