File tree Expand file tree Collapse file tree 7 files changed +7
-16
lines changed Expand file tree Collapse file tree 7 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 21
21
}
22
22
],
23
23
"require" : {
24
- "php" : " ^7.3 || ^8.0" ,
24
+ "php" : " ^7.4 || ^8.0" ,
25
25
"codeigniter/coding-standard" : " ^1.1" ,
26
26
"fakerphp/faker" : " ^1.9" ,
27
27
"mikey179/vfsstream" : " ^1.6" ,
34
34
"phpunit/phpunit" : " ^9.3" ,
35
35
"roave/security-advisories" : " dev-latest"
36
36
},
37
- "require-dev" : {
38
- "codeigniter4/codeigniter4" : " dev-develop"
39
- },
40
- "repositories" : [
41
- {
42
- "type" : " vcs" ,
43
- "url" : " https://github.com/codeigniter4/CodeIgniter4"
44
- }
45
- ],
46
37
"minimum-stability" : " dev" ,
47
38
"prefer-stable" : true
48
39
}
Original file line number Diff line number Diff line change 22
22
strategy :
23
23
fail-fast : false
24
24
matrix :
25
- php-versions : ['7.3 ', '7.4 ', '8.0 ']
25
+ php-versions : ['7.4 ', '8.0 ', '8.1 ']
26
26
27
27
steps :
28
28
- name : Checkout
Original file line number Diff line number Diff line change 26
26
strategy :
27
27
fail-fast : false
28
28
matrix :
29
- php-versions : ['7.3 ', '7.4 ', '8.0 ']
29
+ php-versions : ['7.4 ', '8.0 ', '8.1 ']
30
30
31
31
steps :
32
32
- name : Checkout
Original file line number Diff line number Diff line change 25
25
if : " !contains(github.event.head_commit.message, '[ci skip]')"
26
26
strategy :
27
27
matrix :
28
- php-versions : ['7.3 ', '7.4 ', '8.0 ']
28
+ php-versions : ['7.4 ', '8.0 ', '8.1 ']
29
29
30
30
steps :
31
31
- name : Checkout
Original file line number Diff line number Diff line change 26
26
strategy :
27
27
fail-fast : false
28
28
matrix :
29
- php-versions : ['7.3 ', '7.4 ', '8.0 ']
29
+ php-versions : ['7.4 ', '8.0 ', '8.1 ']
30
30
31
31
steps :
32
32
- name : Checkout
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi:noNamespaceSchemaLocation=" https://schema.phpunit.de/9.3 /phpunit.xsd"
3
+ xsi:noNamespaceSchemaLocation=" https://schema.phpunit.de/9.5 /phpunit.xsd"
4
4
bootstrap=" vendor/codeigniter4/framework/system/Test/bootstrap.php"
5
5
backupGlobals=" false"
6
6
beStrictAboutCoversAnnotation=" true"
Original file line number Diff line number Diff line change 38
38
return static function (ContainerConfigurator $ containerConfigurator ): void {
39
39
// Rule sets to apply
40
40
$ containerConfigurator ->import (SetList::DEAD_CODE );
41
- $ containerConfigurator ->import (LevelSetList::UP_TO_PHP_73 );
41
+ $ containerConfigurator ->import (LevelSetList::UP_TO_PHP_74 );
42
42
$ containerConfigurator ->import (PHPUnitSetList::PHPUNIT_SPECIFIC_METHOD );
43
43
$ containerConfigurator ->import (PHPUnitSetList::PHPUNIT_80 );
44
44
You can’t perform that action at this time.
0 commit comments