File tree Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- php : [8.0 , 8.1 ]
11
+ php : [8.1 , 8.2 ]
12
12
stability : [prefer-lowest, prefer-stable]
13
13
14
14
name : PHP ${{ matrix.php }} / ${{ matrix.stability }}
37
37
command : composer update --prefer-dist --${{ matrix.stability }} --no-interaction --no-progress --ansi
38
38
39
39
- name : Run tests
40
- run : vendor/bin/phpunit --verbose -- colors=always --coverage-clover ./build/logs/clover.xml
40
+ run : vendor/bin/phpunit --colors=always --coverage-clover ./build/logs/clover.xml
41
41
42
42
- name : Code coverage
43
43
uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change 1
1
/.idea
2
+ /.phpunit.cache
2
3
/.vscode
3
4
/vendor
4
5
.DS_Store
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Laravel-specific and pure PHP Helper Functions.
17
17
18
18
| Laravel | Helper Functions |
19
19
| ---------| -----------------------------------------------------------------------------|
20
+ | 11.x | _ [ Support] ( https://buymeacoffee.com/dmitry.ivanov ) _ ☕ |
21
+ | 10.x | [ 10.x] ( https://github.com/dmitry-ivanov/laravel-helper-functions/tree/10.x ) |
20
22
| 9.x | [ 9.x] ( https://github.com/dmitry-ivanov/laravel-helper-functions/tree/9.x ) |
21
23
| 8.x | [ 8.x] ( https://github.com/dmitry-ivanov/laravel-helper-functions/tree/8.x ) |
22
24
| 7.x | [ 7.x] ( https://github.com/dmitry-ivanov/laravel-helper-functions/tree/7.x ) |
Original file line number Diff line number Diff line change 12
12
13
13
}],
14
14
"require" : {
15
- "php" : " ^8.0.2 " ,
15
+ "php" : " ^8.1 " ,
16
16
"ext-dom" : " *" ,
17
17
"ext-simplexml" : " *" ,
18
- "illuminate/support" : " ^9 .0" ,
19
- "nesbot/carbon" : " ^2.53.1 " ,
20
- "symfony/filesystem" : " ^6.0 " ,
21
- "symfony/finder" : " ^6.0 " ,
22
- "symfony/process" : " ^6.0 " ,
23
- "symfony/var-dumper" : " ^6.0 " ,
18
+ "illuminate/support" : " ^10 .0" ,
19
+ "nesbot/carbon" : " ^2.67 " ,
20
+ "symfony/filesystem" : " ^6.2 " ,
21
+ "symfony/finder" : " ^6.2 " ,
22
+ "symfony/process" : " ^6.2 " ,
23
+ "symfony/var-dumper" : " ^6.2 " ,
24
24
"spatie/array-to-xml" : " ^3.0"
25
25
},
26
26
"require-dev" : {
27
- "phpunit/phpunit" : " ^9.5.10 " ,
28
- "mockery/mockery" : " ^1.4.4 " ,
29
- "illuminated/testing-tools" : " ^9 .0"
27
+ "phpunit/phpunit" : " ^10.5 " ,
28
+ "mockery/mockery" : " ^1.5.1 " ,
29
+ "illuminated/testing-tools" : " ^10 .0"
30
30
},
31
31
"autoload" : {
32
32
"files" : [
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" ./vendor/ phpunit/phpunit /phpunit.xsd"
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema. phpunit.de/10.5 /phpunit.xsd"
3
3
backupGlobals =" false"
4
- backupStaticAttributes =" false"
4
+ backupStaticProperties =" false"
5
5
beStrictAboutTestsThatDoNotTestAnything =" false"
6
6
beStrictAboutOutputDuringTests =" true"
7
7
bootstrap =" vendor/autoload.php"
8
+ cacheDirectory =" .phpunit.cache"
8
9
colors =" true"
9
- convertErrorsToExceptions =" true"
10
- convertNoticesToExceptions =" true"
11
- convertWarningsToExceptions =" true"
12
10
processIsolation =" false"
13
11
stopOnError =" false"
14
12
stopOnFailure =" false"
15
- verbose =" true"
16
13
>
17
14
<testsuites >
18
15
<testsuite name =" Laravel Helper Functions Test Suite" >
19
16
<directory suffix =" Test.php" >./tests</directory >
20
17
</testsuite >
21
18
</testsuites >
22
19
23
- <coverage processUncoveredFiles = " true " >
20
+ <source >
24
21
<include >
25
22
<directory suffix =" .php" >./src</directory >
26
23
</include >
27
24
<exclude >
28
25
<file >./src/autoload.php</file >
29
26
</exclude >
30
- </coverage >
27
+ </source >
31
28
</phpunit >
You can’t perform that action at this time.
0 commit comments