File tree Expand file tree Collapse file tree 7 files changed +21
-21
lines changed Expand file tree Collapse file tree 7 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 34
34
JBZOO_COMPOSER_UPDATE_FLAGS : ${{ matrix.composer_flags }}
35
35
strategy :
36
36
matrix :
37
- php-version : [ 8.1, 8.2 ]
37
+ php-version : [ 8.1, 8.2, 8.3 ]
38
38
coverage : [ xdebug, none ]
39
39
composer_flags : [ "--prefer-lowest", "" ]
40
40
steps :
77
77
runs-on : ubuntu-latest
78
78
strategy :
79
79
matrix :
80
- php-version : [ 8.1, 8.2 ]
80
+ php-version : [ 8.1, 8.2, 8.3 ]
81
81
steps :
82
82
- name : Checkout code
83
83
uses : actions/checkout@v3
@@ -111,7 +111,7 @@ jobs:
111
111
runs-on : ubuntu-latest
112
112
strategy :
113
113
matrix :
114
- php-version : [ 8.1, 8.2 ]
114
+ php-version : [ 8.1, 8.2, 8.3 ]
115
115
steps :
116
116
- name : Checkout code
117
117
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 32
32
},
33
33
34
34
"require-dev" : {
35
- "jbzoo/toolbox-dev" : " ^7.0 " ,
35
+ "jbzoo/toolbox-dev" : " ^7.1 " ,
36
36
"jbzoo/utils" : " ^7.1.1" ,
37
- "symfony/yaml" : " >=4 .4" ,
37
+ "symfony/yaml" : " >=6 .4" ,
38
38
39
- "symfony/polyfill-ctype" : " >=1.27 .0" ,
40
- "symfony/polyfill-mbstring" : " >=1.27 .0" ,
41
- "symfony/polyfill-php73" : " >=1.27 .0" ,
42
- "symfony/polyfill-php80" : " >=1.27 .0" ,
43
- "symfony/polyfill-php81" : " >=1.27 .0"
39
+ "symfony/polyfill-ctype" : " >=1.28 .0" ,
40
+ "symfony/polyfill-mbstring" : " >=1.28 .0" ,
41
+ "symfony/polyfill-php73" : " >=1.28 .0" ,
42
+ "symfony/polyfill-php80" : " >=1.28 .0" ,
43
+ "symfony/polyfill-php81" : " >=1.28 .0"
44
44
},
45
45
46
46
"suggest" : {
47
- "symfony/yaml" : " >=4 .4" ,
48
- "jbzoo/utils" : " >=7.0 "
47
+ "symfony/yaml" : " >=6 .4" ,
48
+ "jbzoo/utils" : " >=7.1 "
49
49
},
50
50
51
51
"autoload" : {
Original file line number Diff line number Diff line change 14
14
15
15
declare (strict_types=1 );
16
16
17
- class Fixtures extends \ ArrayObject
17
+ class Fixtures extends ArrayObject
18
18
{
19
19
}
Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ public function init(): void
45
45
*/
46
46
public function benchArrayObjectOrig (): void
47
47
{
48
- new \ ArrayObject ($ this ->data );
48
+ new ArrayObject ($ this ->data );
49
49
}
50
50
51
51
/**
52
52
* @Groups({"Native", "ArrayObject", "Extended"})
53
53
*/
54
54
public function benchArrayObjectExtOrig (): void
55
55
{
56
- new \ ArrayObjectExt ($ this ->data );
56
+ new ArrayObjectExt ($ this ->data );
57
57
}
58
58
59
59
/**
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ public function init(): void
38
38
{
39
39
$ this ->array = DataFixture::createRandomArray ();
40
40
$ this ->data = new Data ($ this ->array );
41
- $ this ->arrObj = new \ ArrayObject ($ this ->array );
42
- $ this ->arrObjExt = new \ ArrayObjectExt ($ this ->array );
41
+ $ this ->arrObj = new ArrayObject ($ this ->array );
42
+ $ this ->arrObjExt = new ArrayObjectExt ($ this ->array );
43
43
}
44
44
45
45
/**
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ public function init(): void
39
39
{
40
40
$ this ->array = Fixture::createRandomArray ();
41
41
$ this ->data = new Data ($ this ->array );
42
- $ this ->arrObj = new \ ArrayObject ($ this ->array );
43
- $ this ->arrObjExt = new \ ArrayObjectExt ($ this ->array );
42
+ $ this ->arrObj = new ArrayObject ($ this ->array );
43
+ $ this ->arrObjExt = new ArrayObjectExt ($ this ->array );
44
44
}
45
45
46
46
/**
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ public function init(): void
39
39
{
40
40
$ this ->array = Fixture::createRandomArray ();
41
41
$ this ->data = new Data ($ this ->array );
42
- $ this ->arrObj = new \ ArrayObject ($ this ->array );
43
- $ this ->arrObjExt = new \ ArrayObjectExt ($ this ->array );
42
+ $ this ->arrObj = new ArrayObject ($ this ->array );
43
+ $ this ->arrObjExt = new ArrayObjectExt ($ this ->array );
44
44
}
45
45
46
46
/**
You can’t perform that action at this time.
0 commit comments