Skip to content

Commit

Permalink
First (pretty bad) look at BinaryStream shim for ext-encoding
Browse files Browse the repository at this point in the history
this will be slow for reading, and it shouldn't be used long-term.

this was mainly a proof-of-concept project to figure out where ext-encoding's API is lacking.
  • Loading branch information
dktapps committed Jan 29, 2024
1 parent 2e1c481 commit 06ea3e9
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 75 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
php: ['8.1', '8.2', '8.3']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@2.24.0
uses: pmmp/setup-php-action@2.0.0
with:
php-version: ${{ matrix.php }}
php-version: ${{ inputs.php }}
install-path: "./bin"
pm-version-major: 5

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "library",
"license": "LGPL-3.0",
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.1",
"php-64bit": "*"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 06ea3e9

Please sign in to comment.