From 112f3bc093f3d4358603dca82daa1bd903ffe454 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 14 Apr 2026 09:42:37 +0200 Subject: update to 1.8.0 raise dependency on PHP 8.2 switch to phpunit11 --- composer.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 27ccbfc..144b45c 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,7 @@ { - "name": "php-ds/extension", + "name": "php-ds/ext-ds", + "description": "An extension providing efficient internal data structures as an alternative to arrays", + "type": "php-ext", "license": "MIT", "keywords": [], "authors": [ @@ -9,11 +11,17 @@ } ], "minimum-stability": "dev", + "require": { + "php": ">= 8.2.0" + }, "require-dev": { - "php-ds/tests": "^1.5" + "php-ds/tests": "^1.8" }, "scripts": { "test" : "php test.php", "memtest": "USE_ZEND_ALLOC=0 ZEND_DONT_UNLOAD_MODULES=1 valgrind php test.php" + }, + "php-ext": { + "extension-name": "ds" } } -- cgit