-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.12 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": "typhoon/data-structures",
"description": "Typhoon Data Structures",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "[email protected]"
},
{
"name": "Typhoon Team",
"homepage": "https://github.com/orgs/typhoon-php/people"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"dragon-code/benchmark": "^2.6",
"ergebnis/composer-normalize": "^2.43.0",
"friendsofphp/php-cs-fixer": "^3.64.0",
"infection/infection": "^0.29.6",
"phpstan/phpstan": "^1.12.2",
"phpunit/phpunit": "^10.5.32",
"phpyh/coding-standard": "^2.6.2",
"symfony/var-dumper": "^6.4.11 || ^7.1.3"
},
"autoload": {
"psr-4": {
"Typhoon\\DataStructures\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Typhoon\\DataStructures\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "tools"
}
},
"scripts": {
"bump-dev": [
"@composer bump --dev-only",
"@composer bin all bump --dev-only"
],
"check-require": "tools/composer-require-checker/vendor/bin/composer-require-checker",
"check-unused": "tools/composer-unused/vendor/bin/composer-unused",
"fixcs": "php-cs-fixer fix --diff",
"infection": "infection --show-mutations",
"pre-command-run": "mkdir -p var",
"psalm": "tools/psalm/vendor/bin/psalm --show-info --no-diff --no-cache",
"test": "phpunit"
}
}