Skip to content

Commit ac30cf5

Browse files
authored
Merge pull request #1 from genkgo/master
Update
2 parents 87643ff + 08ff6d7 commit ac30cf5

9 files changed

+512
-870
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
strategy:
77
matrix:
88
php-version:
9-
- '8.0'
109
- '8.1'
1110
- '8.2'
11+
- '8.3'
1212

1313
name: PHP ${{ matrix.php-version }}
1414

@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup PHP, with composer and extensions
5151
uses: shivammathur/setup-php@v2
5252
with:
53-
php-version: 8.0
53+
php-version: 8.1
5454
coverage: none
5555
tools: cs2pr
5656

@@ -76,7 +76,7 @@ jobs:
7676
- name: Setup PHP, with composer and extensions
7777
uses: shivammathur/setup-php@v2
7878
with:
79-
php-version: 8.0
79+
php-version: 8.1
8080
coverage: none
8181

8282
- name: Cache composer dependencies
@@ -103,7 +103,7 @@ jobs:
103103
- name: Setup PHP, with composer and extensions
104104
uses: shivammathur/setup-php@v2
105105
with:
106-
php-version: 8.0
106+
php-version: 8.1
107107
coverage: pcov
108108

109109
- name: Cache composer dependencies

.php-cs-fixer.dist.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
'mb_str_functions' => true,
8989
'method_argument_space' => true,
9090
'method_chaining_indentation' => true,
91-
'modernize_strpos' => false, // Require PHP 8.0
91+
'modernize_strpos' => true,
9292
'modernize_types_casting' => true,
9393
'multiline_comment_opening_closing' => true,
9494
'multiline_whitespace_before_semicolons' => true,

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
]
1414
},
1515
"require": {
16-
"php": "^8.0",
16+
"php": "^8.1",
1717
"ext-dom": "*",
1818
"ext-libxml": "*",
1919
"ext-simplexml": "*",
20-
"moneyphp/money": "^3.3 || ^4.0",
20+
"moneyphp/money": "^4.0",
2121
"jschaedl/iban-validation": "^2.0"
2222
},
2323
"autoload": {

0 commit comments

Comments
 (0)