diff --git a/.gitattributes b/.gitattributes
index bfb433f..4a70804 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,5 +1,12 @@
* text=auto
+*.blade.php diff=html
+*.css diff=css
+*.html diff=html
+*.md diff=markdown
+*.php diff=php
+
+/.github export-ignore
/tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index a7c7ac2..3ab27a1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
- php: [7.1, 7.2, 7.3, 7.4]
+ php: [7.1, 7.2, 7.3, 7.4, 8.0]
name: PHP ${{ matrix.php }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e76a22c..bfdbfa1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
# Release Notes
-## [Unreleased](https://github.com/laravel/helpers/compare/v1.3.0...master)
+## [Unreleased](https://github.com/laravel/helpers/compare/v1.4.0...master)
+
+
+## [v1.4.0 (2020-11-03)](https://github.com/laravel/helpers/compare/v1.3.0...v1.4.0)
+
+### Added
+- PHP 8 Support ([#20](https://github.com/laravel/helpers/pull/20))
## [v1.3.0 (2020-08-25)](https://github.com/laravel/helpers/compare/v1.2.0...v1.3.0)
diff --git a/README.md b/README.md
index 4c138c4..e488283 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
# Laravel Helpers
-
-
-
+
+
+
This package provides a backwards compatibility layer for Laravel 5.8 helpers in the latest Laravel release.
diff --git a/composer.json b/composer.json
index e0304da..824c34d 100644
--- a/composer.json
+++ b/composer.json
@@ -14,7 +14,7 @@
}
],
"require": {
- "php": ">=7.1.3",
+ "php": "^7.1.3|^8.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0"
},
"require-dev": {
diff --git a/tests/HelpersTest.php b/tests/HelpersTest.php
index 3e21321..3c4cfc9 100644
--- a/tests/HelpersTest.php
+++ b/tests/HelpersTest.php
@@ -1,6 +1,6 @@