File tree 4 files changed +15
-10
lines changed
4 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 48
48
run : composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress --optimize-autoloader
49
49
50
50
- name : Lint code
51
- run : vendor/bin/php-cs-fixer fix --dry-run --diff
51
+ run : PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run --diff
52
52
53
53
- name : Run tests
54
54
run : vendor/bin/phpunit
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ 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.1 (2023-02-06)
8
+
7
9
## 7.0.0 (2023-02-06)
8
10
9
11
### Added
Original file line number Diff line number Diff line change 30
30
"illuminate/support" : " ^10.0"
31
31
},
32
32
"require-dev" : {
33
- "friendsofphp/php-cs-fixer" : " ^3.7 " ,
34
- "phpunit/phpunit" : " ^10.0 "
33
+ "friendsofphp/php-cs-fixer" : " ^3.14 " ,
34
+ "phpunit/phpunit" : " ^9.6 "
35
35
},
36
36
"autoload" : {
37
37
"psr-4" : {
51
51
"scripts" : {
52
52
"composer:validate" : " @composer validate --strict --ansi" ,
53
53
"test" : " vendor/bin/phpunit" ,
54
- "lint" : " vendor/bin/php-cs-fixer fix --dry-run --diff --ansi" ,
55
- "fix" : " vendor/bin/php-cs-fixer fix --ansi" ,
54
+ "lint" : " PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run --diff --ansi" ,
55
+ "fix" : " PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --ansi" ,
56
56
"check" : [
57
57
" @composer:validate" ,
58
58
" @lint" ,
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
5
- bootstrap =" vendor/autoload.php"
6
- cacheDirectory =" .phpunit.cache"
7
3
backupGlobals =" false"
8
- backupStaticProperties =" false"
4
+ backupStaticAttributes =" false"
5
+ bootstrap =" vendor/autoload.php"
9
6
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"
12
15
>
13
16
<coverage >
14
17
<include >
You can’t perform that action at this time.
0 commit comments