File tree 4 files changed +17
-6
lines changed
4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ 4.0.0] - 2022-10-19
8
+ ### Added
9
+ - Codeception v5 support.
10
+ ### Removed
11
+ - Drop Codeception v4 support. If you use Codeception v4, please use the previous version from library.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Inspiration comes from [herloct/codeception-slim-module](https://github.com/herl
13
13
### Minimal requirements
14
14
- php: ` ^8.0 `
15
15
- slim/slim: ` ^4.7 `
16
- - codeception/codeception: ` ^4 .0 `
16
+ - codeception/codeception: ` ^5 .0 `
17
17
18
18
If you don't know Codeception, please check [ Quickstart Guide] ( https://codeception.com/quickstart ) first.
19
19
Original file line number Diff line number Diff line change 10
10
"license" : " MIT" ,
11
11
"require" : {
12
12
"php" : " ^8.0" ,
13
- "codeception/codeception" : " ^4 .0" ,
14
- "codeception/lib-innerbrowser" : " ^2 .0" ,
13
+ "codeception/codeception" : " ^5 .0" ,
14
+ "codeception/lib-innerbrowser" : " ^3 .0" ,
15
15
"slim/psr7" : " ^1.3" ,
16
16
"slim/slim" : " ^4.7"
17
17
},
18
18
"require-dev" : {
19
19
"ext-json" : " *" ,
20
- "codeception/module-asserts" : " ^2 .0" ,
21
- "codeception/module-rest" : " ^2 .0"
20
+ "codeception/module-asserts" : " ^3 .0" ,
21
+ "codeception/module-rest" : " ^3 .0"
22
22
},
23
23
"autoload" : {
24
24
"psr-4" : {
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Slim extends Framework
53
53
public $ app ;
54
54
55
55
/** @var array */
56
- protected $ requiredFields = ['application ' ];
56
+ protected array $ requiredFields = ['application ' ];
57
57
58
58
/** @var string */
59
59
private $ applicationPath ;
You can’t perform that action at this time.
0 commit comments