Skip to content

Commit 7a75681

Browse files
committed
update
1 parent 24cc6c1 commit 7a75681

File tree

3 files changed

+454
-866
lines changed

3 files changed

+454
-866
lines changed

.github/workflows/phpci.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php-versions: ['7.4', '8.1']
14-
13+
php-versions:
14+
- '8.1'
15+
- '8.2'
16+
- '8.3'
17+
- '8.4'
1518
steps:
16-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v5
1720

1821
- name: Set up PHP ${{ matrix.php-versions }}
1922
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=7.4 || >=8.1"
17+
"php": ">=8.1"
1818
},
1919
"autoload": {
2020
"files": [
2121
"src/Pairs.php"
2222
]
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^9.5",
26-
"squizlabs/php_codesniffer": "^3.6"
25+
"phpunit/phpunit": "^12",
26+
"squizlabs/php_codesniffer": "*"
2727
}
2828
}

0 commit comments

Comments
 (0)