Skip to content

Commit

Permalink
Merge branch 'release/1.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Aug 4, 2024
2 parents d7e1c25 + c1a8565 commit 16c0642
Show file tree
Hide file tree
Showing 8 changed files with 502 additions and 508 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
php-versions: ['8.2', '8.3']
name: PHP ${{ matrix.php-versions }}

steps:
Expand Down Expand Up @@ -58,6 +58,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Install dependencies
run: composer install --no-progress

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chdemko/bitarray",
"type": "library",
"description": "BitArray for PHP >= 8.1",
"description": "BitArray for PHP >= 8.2",
"keywords": ["bits","array","iterator"],
"homepage": "http://github.com/chdemko/php-bitarray",
"license": "BSD-3-Clause",
Expand All @@ -14,12 +14,12 @@
}
],
"require": {
"php": ">=8.1"
"php": ">=8.2"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.6",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.2"
"php-coveralls/php-coveralls": "^2.7",
"squizlabs/php_codesniffer": "^3.10",
"phpunit/phpunit": "^11.3"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 16c0642

Please sign in to comment.