File tree 6 files changed +33
-23
lines changed
6 files changed +33
-23
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
9
9
check :
10
- name : Run PHP tests - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
10
+ name : Run checks - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- php : [8.0 , 8.1 ]
15
+ php : [8.1 , 8.2 ]
16
16
dependency-version : [prefer-lowest, prefer-stable]
17
17
os : [ubuntu-latest]
18
18
Original file line number Diff line number Diff line change 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 /
Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ All Notable changes to `sebastiaanluca/laravel-boolean-dates` will be documented
4
4
5
5
Updates should follow the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
6
6
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
+
7
19
## 6.0.1 (2022-03-17)
8
20
9
21
### Fixed
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ $user->accepted_terms_at;
59
59
60
60
## Requirements
61
61
62
- - PHP 8 or 8.1
63
- - Laravel ^9.2
62
+ - PHP 8.1 or 8.2
63
+ - Laravel 10
64
64
65
65
## How to install
66
66
Original file line number Diff line number Diff line change 25
25
}
26
26
],
27
27
"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 "
31
31
},
32
32
"require-dev" : {
33
33
"friendsofphp/php-cs-fixer" : " ^3.7" ,
34
- "phpunit/phpunit" : " ^9.5 "
34
+ "phpunit/phpunit" : " ^10.0 "
35
35
},
36
36
"autoload" : {
37
37
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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 "
5
5
bootstrap =" vendor/autoload.php"
6
+ cacheDirectory =" .phpunit.cache"
7
+ backupGlobals =" false"
8
+ backupStaticProperties =" false"
6
9
colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
10
processIsolation =" false"
11
11
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"
15
12
>
16
13
<coverage >
17
14
<include >
You can’t perform that action at this time.
0 commit comments