-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 853 Bytes
/
composer.json
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
28
29
30
31
32
33
34
35
36
37
{
"name": "metalinspired/nested-set",
"description": "PHP library for manipulating and retrieving database records using nested set model technique to represent tree data structure",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"db",
"nested-set"
],
"authors": [
{
"name": "Milan Divković"
}
],
"homepage": "https://github.com/metalinspired/nested-set",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-db": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"phpunit/dbunit": "^3.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"metalinspired\\NestedSet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"metalinspired\\NestedSetTest\\": "test/"
}
}
}