Skip to content

Commit 846811e

Browse files
Merge branch 'release/7.0.1'
2 parents c1c2113 + 692e732 commit 846811e

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
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

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ 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.1 (2023-02-06)
8+
79
## 7.0.0 (2023-02-06)
810

911
### Added

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
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": {
@@ -51,8 +51,8 @@
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",

phpunit.xml.dist

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
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>

0 commit comments

Comments
 (0)