summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 144b45c0d551764d0da18dd609485e7787fffbf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "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": [
        {
            "name": "Rudi Theunissen",
            "email": "rudolf.theunissen@gmail.com"
        }
    ],
    "minimum-stability": "dev",
    "require": {
        "php": ">= 8.2.0"
    },
    "require-dev": {
        "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"
    }
}