File tree Expand file tree Collapse file tree 4 files changed +15
-10
lines changed Expand file tree Collapse file tree 4 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 4848 run : composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress --optimize-autoloader
4949
5050 - 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
5252
5353 - name : Run tests
5454 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
44
55Updates should follow the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
66
7+ ## 7.0.1 (2023-02-06)
8+
79## 7.0.0 (2023-02-06)
810
911### Added
Original file line number Diff line number Diff line change 3030 "illuminate/support" : " ^10.0"
3131 },
3232 "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 "
3535 },
3636 "autoload" : {
3737 "psr-4" : {
5151 "scripts" : {
5252 "composer:validate" : " @composer validate --strict --ansi" ,
5353 "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" ,
5656 "check" : [
5757 " @composer:validate" ,
5858 " @lint" ,
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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"
73 backupGlobals =" false"
8- backupStaticProperties =" false"
4+ backupStaticAttributes =" false"
5+ bootstrap =" vendor/autoload.php"
96 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"
1215>
1316 <coverage >
1417 <include >
You can’t perform that action at this time.
0 commit comments