1
0
Fork 0
mirror of https://github.com/shufflingpixels/php-io.git synced 2026-08-15 11:48:13 +02:00
php-io/composer.json
Henrik Hautakoski c9a406d63b drop supprt for php 8.1
php 8.1 requires pest 2.0 that depends on a phpunit version that is
affected by security advisories ("PKSA-z3gr-8qht-p93v")

see: https://packagist.org/security-advisories/PKSA-z3gr-8qht-p93v
2026-06-27 09:23:27 +02:00

35 lines
839 B
JSON

{
"name": "shufflingpixels/php-io",
"description": "A small, focused PHP I/O toolkit for working with streams and binary data.",
"type": "library",
"license": "AGPL-3.0-or-later",
"autoload": {
"psr-4": {
"Shufflingpixels\\IO\\": "src/"
}
},
"authors": [
{
"name": "Henrik Hautakoski",
"email": "henrik@shufflingpixels.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"pestphp/pest": "^3.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest"
},
"support": {
"issues": "https://github.com/shufflingpixels/php-io/issues",
"source": "https://github.com/shufflingpixels/php-io"
}
}