-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "roave/no-floaters",
"type": "phpstan-extension",
"description": "PHPStan Rules to Disallow Float proliferation in contexts where IEEE-754 rounding errors are not acceptable",
"license": [
"MIT"
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"nikic/php-parser": "^4.17.1",
"phpstan/phpstan": "^1.10.47"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"infection/infection": "^0.27.11",
"maglnet/composer-require-checker": "^4.7.1",
"phpstan/phpstan-phpunit": "^1.4.1",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^10.5.38",
"squizlabs/php_codesniffer": "^3.11.0"
},
"autoload": {
"psr-4": {
"Roave\\PHPStan\\Rules\\Floats\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/asset"
],
"psr-4": {
"Roave\\PHPStanTest\\Rules\\Floats\\": "tests/src"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1.99"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}