File tree 4 files changed +36
-41
lines changed
4 files changed +36
-41
lines changed Original file line number Diff line number Diff line change
1
+ ; This file is for unifying the coding style for different editors and IDEs.
2
+ ; More information at http://editorconfig.org
3
+
4
+ root = true
5
+
6
+ [* ]
7
+ charset = utf-8
8
+ indent_size = 4
9
+ indent_style = space
10
+ end_of_line = lf
11
+ insert_final_newline = true
12
+ trim_trailing_whitespace = true
13
+
14
+ [* .md ]
15
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change @@ -19,21 +19,12 @@ jobs:
19
19
20
20
strategy :
21
21
matrix :
22
- php : [8.0, 7.4, 7.3, 7.2 ]
23
- laravel : [8 .*, 7.*, 6 .*]
22
+ php : [8.2, 8.1, 8.0 ]
23
+ laravel : [10 .*, 9 .*]
24
24
dependency-version : [prefer-lowest, prefer-stable]
25
- include :
26
- - laravel : 9.*
27
- php : 8.1
28
- dependency-version : prefer-stable
29
- - laravel : 9.*
30
- php : 8.0
31
- dependency-version : prefer-lowest
32
25
exclude :
33
- - laravel : 8.*
34
- php : 7.2
35
- - php : 8.0
36
- dependency-version : prefer-lowest
26
+ - laravel : 10.*
27
+ php : 8.0
37
28
38
29
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
39
30
54
45
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress
55
46
56
47
- name : Execute Unit Tests
57
- run : composer test
48
+ run : composer test
Original file line number Diff line number Diff line change 15
15
],
16
16
"require" : {
17
17
"php" : " >=7.2" ,
18
- "illuminate/support" : " ^6|^7|^8|^9 " ,
19
- "illuminate/translation" : " ^6|^7|^8|^9 " ,
20
- "symfony/finder" : " ^4|^5|^ 6"
18
+ "illuminate/support" : " ^9|^10 " ,
19
+ "illuminate/translation" : " ^9|^10 " ,
20
+ "symfony/finder" : " ^6"
21
21
},
22
22
"require-dev" : {
23
- "orchestra/testbench" : " ^4|^5|^6|^7 "
23
+ "orchestra/testbench" : " ^7|^8 "
24
24
},
25
25
"suggest" : {
26
26
"tanmuhittin/laravel-google-translate" : " If you want to translate using Google API"
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnError =" false"
11
- stopOnFailure =" false"
12
- verbose =" true"
13
- >
14
- <testsuites >
15
- <testsuite name =" Test Suite" >
16
- <directory >./tests/</directory >
17
- </testsuite >
18
- </testsuites >
19
- <filter >
20
- <whitelist >
21
- <directory >./src</directory >
22
- </whitelist >
23
- </filter >
24
- </phpunit >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnError =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <coverage >
4
+ <include >
5
+ <directory >./src</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuites >
9
+ <testsuite name =" Test Suite" >
10
+ <directory >./tests/</directory >
11
+ </testsuite >
12
+ </testsuites >
13
+ </phpunit >
You can’t perform that action at this time.
0 commit comments