-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 942 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
38
39
40
41
{
"name": "shopware/dbal-nested-set",
"description": "A Doctrine DBAL nested set implementation",
"type": "library",
"autoload": {
"psr-4": {
"Shopware\\DbalNestedSet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Shopware\\DbalNestedSetTest\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"doctrine/dbal": "^2.5",
"phpunit/phpunit": "^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Jan Philipp Pietrzyk",
"email": "jp@shopware.com"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"bin-dir": "bin",
"platform": {
"php": "7.4"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}