Skip to content

Commit

Permalink
support php 8
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 16, 2021
1 parent 99b5ad4 commit 77db454
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor
composer.lock
.php_cs.cache
.php_cs.cache
.phpunit.result.cache
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 0.1.0 - 2019-04-15
## [0.1.1] - 2021-12-16
### Fixed
- PHP 8 support

## [0.1.0] - 2019-04-15
### Added
- `language` option
- `AddSpaceAfter` fixer
Expand All @@ -20,3 +24,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- `RemoveSpaceBefore` fixer
- `Spaces` fixer
- `SpaceTags` fixer

[0.1.1]: https://github.com/oscarotero/typofixer/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/oscarotero/typofixer/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.1|^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.1"
},
"autoload": {
Expand Down

0 comments on commit 77db454

Please sign in to comment.