-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
51 lines (51 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "previousnext/nested-set",
"description": "A PHP Doctrine DBAL implementation for Nested Sets.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kim Pepper",
"email": "kim@pepper.id.au"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"doctrine/dbal": "^3.3"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"drupal/coder": "^8.3.12",
"pear/console_table": "^1.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^8.5 || ^9.3",
"squizlabs/php_codesniffer": "^3.7.1"
},
"autoload": {
"psr-4": {
"PNX\\NestedSet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PNX\\NestedSet\\Tests\\": "tests"
}
},
"config": {
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}