File tree Expand file tree Collapse file tree 5 files changed +27
-22
lines changed Expand file tree Collapse file tree 5 files changed +27
-22
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - " 7.2 "
5
- - " 7.3 "
6
- - 7.4snapshot
4
+ - 7.3
5
+ - 7.4
6
+ - nightly
7
7
8
8
cache :
9
9
directories :
10
10
- $HOME/.composer/cache
11
11
12
12
env :
13
13
matrix :
14
- - LARAVEL_VERSION="5.8.*" COMPOSER_FLAGS="--prefer-lowest"
15
- - LARAVEL_VERSION="5.8.*" COMPOSER_FLAGS="--prefer-stable"
16
- - LARAVEL_VERSION="^6.0" COMPOSER_FLAGS="--prefer-lowest"
17
- - LARAVEL_VERSION="^6.0" COMPOSER_FLAGS="--prefer-stable"
14
+ - LARAVEL_VERSION="^7.0" COMPOSER_FLAGS="--prefer-lowest"
15
+ - LARAVEL_VERSION="^7.0" COMPOSER_FLAGS="--prefer-stable"
18
16
- LARAVEL_VERSION="dev-master" ORCHESTRA_VERSION="dev-master" COMPOSER_FLAGS="--prefer-lowest" MINIMUM_STABILITY="dev"
19
17
- LARAVEL_VERSION="dev-master" ORCHESTRA_VERSION="dev-master" COMPOSER_FLAGS="--prefer-stable" MINIMUM_STABILITY="dev"
20
18
21
19
matrix :
22
20
allow_failures :
23
- - php : 7.4snapshot
21
+ - php : nightly
24
22
- env : LARAVEL_VERSION="dev-master" ORCHESTRA_VERSION="dev-master" COMPOSER_FLAGS="--prefer-lowest" MINIMUM_STABILITY="dev"
25
23
- env : LARAVEL_VERSION="dev-master" ORCHESTRA_VERSION="dev-master" COMPOSER_FLAGS="--prefer-stable" MINIMUM_STABILITY="dev"
26
24
fast_finish : true
@@ -36,7 +34,6 @@ install:
36
34
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
37
35
38
36
script :
39
- - vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1
40
37
- vendor/bin/phpunit
41
38
42
39
notifications :
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
+ ## 4.0.0 (2020-04-24)
8
+
9
+ ### Added
10
+
11
+ - Added support for Laravel 7
12
+
13
+ ### Removed
14
+
15
+ - Dropped support for Laravel 5
16
+ - Dropped support for Laravel 6
17
+ - Dropped support for PHP 7.2
18
+
7
19
## 3.0.0 (2019-09-06)
8
20
9
21
### Added
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ $user->accepted_terms_and_conditions_at;
66
66
67
67
## Requirements
68
68
69
- - PHP 7.2 or higher
70
- - Laravel 5.8 or higher
69
+ - PHP 7.3 or higher
70
+ - Laravel 7.0 or higher
71
71
72
72
## How to install
73
73
Original file line number Diff line number Diff line change 24
24
}
25
25
],
26
26
"require" : {
27
- "php" : " ^7.2 " ,
28
- "laravel/framework" : " 5.8.*|^6 .0" ,
27
+ "php" : " ^7.3 " ,
28
+ "laravel/framework" : " ^7 .0" ,
29
29
"nesbot/carbon" : " ^1.22|^2.0"
30
30
},
31
31
"require-dev" : {
32
32
"dms/phpunit-arraysubset-asserts" : " ^0.1.0" ,
33
- "kint-php/kint" : " ^3.1" ,
34
- "mockery/mockery" : " ^1.2" ,
35
- "orchestra/testbench" : " 3.8.*|^4.0" ,
36
- "phpunit/phpunit" : " ^8.3" ,
37
- "sebastiaanluca/php-codesniffer-ruleset" : " ^0.4.2"
33
+ "kint-php/kint" : " ^3.3" ,
34
+ "mockery/mockery" : " ^1.3" ,
35
+ "orchestra/testbench" : " ^5.1" ,
36
+ "phpunit/phpunit" : " ^8.5"
38
37
},
39
38
"autoload" : {
40
39
"psr-4" : {
58
57
},
59
58
"scripts" : {
60
59
"composer-validate" : " @composer validate --no-check-all --strict --ansi" ,
61
- "codesniffer-check" : " vendor/bin/phpcs --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1" ,
62
- "codesniffer-fix" : " vendor/bin/phpcbf --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 || exit 0" ,
63
60
"test" : " vendor/bin/phpunit" ,
64
61
"test-lowest" : [
65
62
" composer update --prefer-lowest --prefer-dist --no-interaction --ansi" ,
71
68
],
72
69
"check" : [
73
70
" @composer-validate" ,
74
- " @codesniffer-check" ,
75
71
" @test"
76
72
]
77
73
},
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public function it returns all attributes() : void
57
57
'has_agreed_to_something ' => false ,
58
58
59
59
'accepted_terms_at ' => null ,
60
- 'accepted_processing_at ' => '2018-01-01 10 :42:06 ' ,
60
+ 'accepted_processing_at ' => '2018-01-01T10 :42:06.000000Z ' ,
61
61
'agreed_to_something_at ' => null ,
62
62
];
63
63
You can’t perform that action at this time.
0 commit comments