-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.27 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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
{
"name": "nicmart/tree",
"description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Nicolò Martini",
"email": "nicmartnic@gmail.com"
},
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.52.0",
"ergebnis/license": "^2.7.0",
"ergebnis/php-cs-fixer-config": "^6.28.1",
"fakerphp/faker": "^1.24.1",
"infection/infection": "~0.26.19",
"phpunit/phpunit": "^9.6.33",
"psalm/plugin-phpunit": "~0.19.0",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Tree\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tree\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.0.25"
},
"sort-packages": true
}
}