-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2 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
{
"description": "Typhoon Monorepo",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "Typhoon Team",
"homepage": "https://github.com/orgs/typhoon-php/people"
}
],
"require": {
"php": "^8.1",
"ext-tokenizer": "*",
"composer-runtime-api": "*",
"jetbrains/phpstorm-stubs": "^2024.1",
"nikic/php-parser": "^4.18 || ^5.0",
"phpstan/phpdoc-parser": "^1.21",
"psr/simple-cache": "^3.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/polyfill-php84": "^1.30"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"dragon-code/benchmark": "^2.6 || ^3",
"ergebnis/composer-normalize": "^2.43.0",
"friendsofphp/php-cs-fixer": "^3.62.0",
"infection/infection": "^0.29.6",
"mikey179/vfsstream": "^1.6.11",
"phpstan/phpstan": "^1.11.9",
"phpyh/coding-standard": "^2.6.1",
"symfony/finder": "^6.4.10 || ^7.1.3",
"symfony/var-dumper": "^6.4.10 || ^7.1.3",
"typhoon/opcache": "^0.2.1"
},
"autoload": {
"psr-4": {
"Typhoon\\": "src/"
},
"files": [
"src/Type/functions.php",
"src/Reflection/Internal/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Typhoon\\": "tests/"
},
"files": [
"tests/Reflection/functions.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"lock": false,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "tools"
}
}
}