-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
90 lines (90 loc) · 2.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typhoon/reflection",
"description": "Static PHP reflection with phpDoc support",
"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",
"ext-tokenizer": "*",
"nikic/php-parser": "^4.18 || ^5.0",
"phpstan/phpdoc-parser": "^1.21",
"psr/simple-cache": "^3.0",
"symfony/deprecation-contracts": "^3.0",
"typhoon/change-detector": "^0.4.4",
"typhoon/declaration-id": "^0.4",
"typhoon/type": "^0.4.4",
"typhoon/typed-map": "^0.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"dragon-code/benchmark": "^2.6",
"ergebnis/composer-normalize": "^2.44.0",
"friendsofphp/php-cs-fixer": "^3.64.0",
"php-defer/php-defer": "^5.0",
"phpstan/phpstan": "^1.12.6",
"phpunit/phpunit": "^10.5.36",
"phpyh/coding-standard": "^2.6.2",
"symfony/var-dumper": "^6.4.11 || ^7.1.3",
"typhoon/opcache": "^0.2.1",
"typhoon/phpstorm-reflection-stubs": "^0.4.4"
},
"conflict": {
"typhoon/phpstorm-reflection-stubs": "<0.4.3"
},
"autoload": {
"psr-4": {
"Typhoon\\Reflection\\": "src/"
},
"files": [
"src/Internal/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Typhoon\\Reflection\\": "tests/"
},
"files": [
"tests/functions.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": 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": "tools/infection/vendor/bin/infection --show-mutations",
"pre-command-run": "mkdir -p var",
"psalm": "tools/psalm/vendor/bin/psalm --show-info --no-diff --no-cache",
"test": "phpunit"
}
}