diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 12 |
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" } } |
