-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
74 lines (74 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "loophp/phptree",
"description": "An implementation of tree data structure",
"license": "MIT",
"type": "library",
"keywords": [
"tree",
"php",
"data structure",
"binary tree"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"support": {
"issues": "https://github.com/loophp/phptree/issues",
"source": "https://github.com/loophp/phptree"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.1"
},
"require-dev": {
"ext-ast": "*",
"ext-pcov": "*",
"drupol/launcher": "^2.2",
"drupol/php-conventions": "^6",
"drupol/phpmerkle": "^2.2",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"graphp/graphviz": "^0.2",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.2",
"loophp/launcher": "^2.2.2",
"microsoft/tolerant-php-parser": "^0.1",
"nikic/php-parser": "^4",
"phpspec/phpspec": "^7"
},
"autoload": {
"psr-4": {
"loophp\\phptree\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"loophp\\phptree\\tests\\": "tests/src/",
"loophp\\phptree\\benchmarks\\": "benchmarks/",
"spec\\loophp\\phptree\\": "spec/loophp/phptree/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"changelog-unreleased": "auto_changelog -c .auto-changelog -u",
"changelog-version": "auto_changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"infection": "./vendor/bin/infection run -j 1"
}
}