taron133
2020-10-26 aa8d874c8a3287d41d26566ae32b6ed8d4557ff9
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
{
    "name": "bluem/tree",
    "type": "library",
    "description": "Library for handling tree structures based on parent IDs",
    "keywords": ["tree", "hierarchical"],
    "homepage": "https://github.com/BlueM/Tree",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Carsten Blüm",
            "email": "carsten@bluem.net"
        }
    ],
    "require": {
        "php": ">=7.0",
        "ext-json": "*"
    },
    "autoload": {
        "psr-4": {"BlueM\\": "src/"}
    },
    "require-dev": {
        "phpunit/phpunit": "6.*",
        "doctrine/instantiator": "1.0.*"
    }
}