Skip to content

Commit c1c2113

Browse files
Merge branch 'release/7.0.0'
2 parents 4fcc5dc + 23ac437 commit c1c2113

File tree

6 files changed

+33
-23
lines changed

6 files changed

+33
-23
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
jobs:
88

99
check:
10-
name: Run PHP tests - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
10+
name: Run checks - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [8.0, 8.1]
15+
php: [8.1, 8.2]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
os: [ubuntu-latest]
1818

.gitignore

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
.idea
2-
.php-cs-fixer.cache
3-
.phpunit.result.cache
4-
composer.lock
5-
composer.phar
6-
phpunit.xml
7-
vendor/
1+
/.idea
2+
/.php-cs-fixer.cache
3+
/.phpunit.cache
4+
/.phpunit.result.cache
5+
/composer.lock
6+
/composer.phar
7+
/phpunit.xml
8+
/vendor/

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All Notable changes to `sebastiaanluca/laravel-boolean-dates` will be documented
44

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

7+
## 7.0.0 (2023-02-06)
8+
9+
### Added
10+
11+
- Added support for PHP 8.2
12+
- Added support for Laravel 10
13+
14+
### Removed
15+
16+
- Dropped support for PHP 8.0
17+
- Dropped support for Laravel 9
18+
719
## 6.0.1 (2022-03-17)
820

921
### Fixed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ $user->accepted_terms_at;
5959

6060
## Requirements
6161

62-
- PHP 8 or 8.1
63-
- Laravel ^9.2
62+
- PHP 8.1 or 8.2
63+
- Laravel 10
6464

6565
## How to install
6666

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
}
2626
],
2727
"require": {
28-
"php": "^8.0|^8.1",
29-
"illuminate/database": "^9.2",
30-
"illuminate/support": "^9.2"
28+
"php": "~8.1|~8.2",
29+
"illuminate/database": "^10.0",
30+
"illuminate/support": "^10.0"
3131
},
3232
"require-dev": {
3333
"friendsofphp/php-cs-fixer": "^3.7",
34-
"phpunit/phpunit": "^9.5"
34+
"phpunit/phpunit": "^10.0"
3535
},
3636
"autoload": {
3737
"psr-4": {

phpunit.xml.dist

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
55
bootstrap="vendor/autoload.php"
6+
cacheDirectory=".phpunit.cache"
7+
backupGlobals="false"
8+
backupStaticProperties="false"
69
colors="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
1010
processIsolation="false"
1111
stopOnFailure="false"
12-
verbose="true"
13-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
1512
>
1613
<coverage>
1714
<include>

0 commit comments

Comments
 (0)