-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.19 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
{
"name": "typhoon/phpstorm-reflection-stubs",
"description": "PhpStorm Reflection Stubs integration for Typhoon Reflection",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "[email protected]"
},
{
"name": "Typhoon Team",
"homepage": "https://github.com/orgs/typhoon-php/people"
}
],
"require": {
"php": "^8.1",
"jetbrains/phpstorm-stubs": "^2024.1",
"symfony/polyfill-php84": "^1.30",
"typhoon/change-detector": "^0.4",
"typhoon/declaration-id": "^0.4",
"typhoon/reflection": "^0.4",
"typhoon/type": "^0.4",
"typhoon/typed-map": "^0.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"ergebnis/composer-normalize": "^2.43.0",
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpyh/coding-standard": "^2.6.2"
},
"autoload": {
"psr-4": {
"Typhoon\\PhpStormReflectionStubs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Typhoon\\PhpStormReflectionStubs\\": "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"
}
}