-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.75 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
{
"name": "typhoon/overloading",
"description": "The missing method overloading feature for PHP.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-filter": "*"
},
"require-dev": {
"dragon-code/benchmark": "^2.5",
"ergebnis/composer-normalize": "^2.39",
"friendsofphp/php-cs-fixer": "^3.38.2",
"icanhazstring/composer-unused": "^0.8.10",
"infection/infection": "^0.27.8",
"maglnet/composer-require-checker": "^4.7.1",
"phpunit/phpunit": "^10.4.2",
"phpyh/coding-standard": "^2.5.0",
"psalm/plugin-phpunit": "^0.18.4",
"rector/rector": "^0.18.10",
"symfony/filesystem": "^6.3",
"symfony/var-dumper": "^6.3.8",
"vimeo/psalm": "^5.15.0"
},
"autoload": {
"psr-4": {
"Typhoon\\Overloading\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Typhoon\\Overloading\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check-require": "composer-require-checker check --config-file=composer-require-checker.json",
"check-unused": "composer-unused",
"fixcs": "php-cs-fixer fix --diff --verbose",
"infection": "infection --threads=max --show-mutations",
"pre-command-run": "mkdir -p var",
"psalm": "psalm --show-info=true --no-diff",
"rector": "rector process",
"test": "phpunit"
}
}