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.*"
| }
| }
|
|