Skip to content

Commit

Permalink
Merge branch 'release/7.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanluca committed Feb 6, 2023
2 parents 4fcc5dc + 23ac437 commit c1c2113
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
jobs:

check:
name: Run PHP tests - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
name: Run checks - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1]
php: [8.1, 8.2]
dependency-version: [prefer-lowest, prefer-stable]
os: [ubuntu-latest]

Expand Down
15 changes: 8 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.idea
.php-cs-fixer.cache
.phpunit.result.cache
composer.lock
composer.phar
phpunit.xml
vendor/
/.idea
/.php-cs-fixer.cache
/.phpunit.cache
/.phpunit.result.cache
/composer.lock
/composer.phar
/phpunit.xml
/vendor/
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All Notable changes to `sebastiaanluca/laravel-boolean-dates` will be documented

Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## 7.0.0 (2023-02-06)

### Added

- Added support for PHP 8.2
- Added support for Laravel 10

### Removed

- Dropped support for PHP 8.0
- Dropped support for Laravel 9

## 6.0.1 (2022-03-17)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ $user->accepted_terms_at;

## Requirements

- PHP 8 or 8.1
- Laravel ^9.2
- PHP 8.1 or 8.2
- Laravel 10

## How to install

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
}
],
"require": {
"php": "^8.0|^8.1",
"illuminate/database": "^9.2",
"illuminate/support": "^9.2"
"php": "~8.1|~8.2",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
Expand Down
13 changes: 5 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
backupGlobals="false"
backupStaticProperties="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage>
<include>
Expand Down

0 comments on commit c1c2113

Please sign in to comment.