File tree Expand file tree Collapse file tree 5 files changed +396
-486
lines changed Expand file tree Collapse file tree 5 files changed +396
-486
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,16 @@ jobs:
11
11
fail-fast : false
12
12
matrix :
13
13
php-version :
14
- - " 7.4"
15
- - " 8.0"
16
14
- " 8.1"
17
15
- " 8.2"
16
+ - " 8.3"
18
17
dependency-versions :
19
18
- " lowest"
20
19
- " highest"
21
20
22
21
steps :
23
22
- name : Repo checkout
24
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
25
24
26
25
- name : Setup PHP
27
26
uses : shivammathur/setup-php@v2
30
29
coverage : none
31
30
32
31
- name : Install composer dependencies
33
- uses : ramsey/composer-install@v2
32
+ uses : ramsey/composer-install@v3
34
33
with :
35
34
dependency-versions : ${{ matrix.dependency-versions }}
36
35
43
42
runs-on : ubuntu-latest
44
43
steps :
45
44
- name : Repo checkout
46
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
47
46
48
47
- name : Setup PHP
49
48
uses : shivammathur/setup-php@v2
52
51
coverage : none
53
52
54
53
- name : Install composer dependencies
55
- uses : ramsey/composer-install@v2
54
+ uses : ramsey/composer-install@v3
56
55
with :
57
56
dependency-versions : 8.1
58
57
59
58
- name : Run PHPUnit
60
- run : vendor/bin/phpunit
59
+ run : vendor/bin/phpunit --display-incomplete --display-phpunit-deprecations --display-deprecations --display-errors --display-warnings --display-skipped --display-notices
Original file line number Diff line number Diff line change 4
4
.DS_Store
5
5
.gitignore
6
6
.lmsupdatenotes
7
+ .phpunit.cache
Original file line number Diff line number Diff line change 30
30
}
31
31
},
32
32
"scripts" : {
33
- "sniffer:php7.4" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4" ,
34
33
"sniffer:php8.0" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0" ,
35
34
"sniffer:php8.1" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1" ,
36
- "sniffer:php8.2" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2"
35
+ "sniffer:php8.2" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2" ,
36
+ "sniffer:php8.3" : " phpcs -p -v ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.3"
37
37
},
38
38
"require-dev" : {
39
- "phpunit/phpunit" : " ^9.5" ,
40
39
"squizlabs/php_codesniffer" : " ^3.7" ,
41
- "phpcompatibility/php-compatibility" : " ^9.3"
40
+ "phpcompatibility/php-compatibility" : " ^9.3" ,
41
+ "phpunit/phpunit" : " ^10.5"
42
42
},
43
43
"autoload-dev" : {
44
44
"psr-4" : {
You can’t perform that action at this time.
0 commit comments