Skip to content

Commit 82ff832

Browse files
authored
Merge pull request #14 from msztorc/laravel-9
Laravel 9 support
2 parents 56e4bd1 + 7bc9ea8 commit 82ff832

File tree

3 files changed

+22
-14
lines changed

3 files changed

+22
-14
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,27 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.0, 7.4, 7.3]
13-
laravel: [8.*, 7.*, 6.*]
12+
php: [8.1, 8.0, 7.4, 7.3]
13+
laravel: [9.*, 8.*, 7.*, 6.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16-
- laravel: 8.*
17-
testbench: ^6.15
18-
- laravel: 7.*
19-
testbench: ^5.19
20-
- laravel: 6.*
21-
testbench: ^4.17
22-
exclude:
16+
- laravel: 9.*
17+
testbench: 7.*
2318
- laravel: 8.*
24-
php: 7.2
19+
testbench: ^6.24
20+
- laravel: 7.*
21+
testbench: ^5.20
22+
- laravel: 6.*
23+
testbench: ^4.17
24+
exclude:
25+
- laravel: 6.*
26+
php: 8.1
27+
- laravel: 7.*
28+
php: 8.1
29+
- laravel: 9.*
30+
php: 7.3
31+
- laravel: 9.*
32+
php: 7.4
2533

2634
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2735

.php-cs-fixer.cache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"php":"8.1.1","version":"3.5.0","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"braces":true,"class_definition":true,"constant_case":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":{"elements":["method","property"]},"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"sort_algorithm":"alpha"},"no_unused_imports":true,"trailing_comma_in_multiline":true,"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"blank_line_before_statement":{"statements":["break","continue","declare","return","throw","try"]},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true},"hashes":{"src\/LaravelEnvFacade.php":2320290982,"src\/Commands\/EnvSetCommand.php":2797466106,"src\/Commands\/EnvGetCommand.php":1164089847,"src\/Commands\/EnvListCommand.php":3742492754,"src\/Commands\/Traits\/CommandValidator.php":3979948346,"src\/Commands\/EnvDelCommand.php":3682055790,"src\/Env.php":1980484207,"src\/LaravelEnvServiceProvider.php":277741090,"tests\/EnvArtisanTest.php":3763063661,"tests\/EnvClassTest.php":2650342917}}
1+
{"php":"8.1.2","version":"3.6.0","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"braces":true,"class_definition":true,"constant_case":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":{"elements":["method","property"]},"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"sort_algorithm":"alpha"},"no_unused_imports":true,"trailing_comma_in_multiline":true,"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"blank_line_before_statement":{"statements":["break","continue","declare","return","throw","try"]},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true},"hashes":{"src\/Commands\/EnvSetCommand.php":2797466106,"src\/Commands\/EnvListCommand.php":3742492754,"src\/Commands\/EnvGetCommand.php":1164089847,"src\/Commands\/Traits\/CommandValidator.php":3979948346,"src\/Commands\/EnvDelCommand.php":3682055790,"src\/Env.php":1980484207,"src\/LaravelEnvFacade.php":2320290982,"src\/LaravelEnvServiceProvider.php":277741090,"tests\/EnvClassTest.php":2650342917,"tests\/EnvArtisanTest.php":3763063661}}

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.3|^7.4|^8.0",
25-
"illuminate/support" : "^6.0|^7.0|^8.0",
24+
"php": "^7.3|^7.4|^8.0|^8.1",
25+
"illuminate/support" : "^6.0|^7.0|^8.0|^9.0",
2626
"ext-json": "*"
2727
},
2828
"autoload": {
@@ -55,7 +55,7 @@
5555
},
5656
"require-dev": {
5757
"friendsofphp/php-cs-fixer": "^2 || ^3",
58-
"orchestra/testbench": "^4.0|^5.0|^6.0",
58+
"orchestra/testbench": "^4.0|^5.0|^6.0||^7.0",
5959
"phpunit/phpunit": "^8.0 || ^9.0"
6060
}
6161
}

0 commit comments

Comments
 (0)