Skip to content

Commit 16c0642

Browse files
committed
Merge branch 'release/1.2.4'
2 parents d7e1c25 + c1a8565 commit 16c0642

File tree

8 files changed

+502
-508
lines changed

8 files changed

+502
-508
lines changed

.github/workflows/php.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
php-versions: ['8.1', '8.2', '8.3']
18+
php-versions: ['8.2', '8.3']
1919
name: PHP ${{ matrix.php-versions }}
2020

2121
steps:
@@ -58,6 +58,11 @@ jobs:
5858
- name: Checkout
5959
uses: actions/checkout@v4
6060

61+
- name: Install PHP
62+
uses: shivammathur/setup-php@v2
63+
with:
64+
php-version: '8.3'
65+
6166
- name: Install dependencies
6267
run: composer install --no-progress
6368

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chdemko/bitarray",
33
"type": "library",
4-
"description": "BitArray for PHP >= 8.1",
4+
"description": "BitArray for PHP >= 8.2",
55
"keywords": ["bits","array","iterator"],
66
"homepage": "http://github.com/chdemko/php-bitarray",
77
"license": "BSD-3-Clause",
@@ -14,12 +14,12 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=8.1"
17+
"php": ">=8.2"
1818
},
1919
"require-dev": {
20-
"php-coveralls/php-coveralls": "^2.6",
21-
"squizlabs/php_codesniffer": "^3.7",
22-
"phpunit/phpunit": "^10.2"
20+
"php-coveralls/php-coveralls": "^2.7",
21+
"squizlabs/php_codesniffer": "^3.10",
22+
"phpunit/phpunit": "^11.3"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)