summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-04-14 09:42:37 +0200
committerRemi Collet <remi@php.net>2026-04-14 09:42:37 +0200
commit112f3bc093f3d4358603dca82daa1bd903ffe454 (patch)
treee840849dc14e1128c29bafc6ec1a488914c75ad9 /composer.json
parentbb1f6f3af659e0256e60f6dd6c00ae8fa58e0caf (diff)
update to 1.8.0
raise dependency on PHP 8.2 switch to phpunit11
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json12
1 files changed, 10 insertions, 2 deletions
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"
}
}