-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 3 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
{
"name": "fox91/dev-tools",
"description": "fox91 Dev Tools",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrea Falco",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"fox91/coding-standard": "^0.3.2",
"php-parallel-lint/php-console-highlighter": "^0.5.0 || ^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.15.1 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0",
"rector/rector": "^1.1.1 || ^2.0.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.6 || ^5.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"suggest": {
"brainbits/phpstan-rules": "[--dev] PHPStan extension with opinionated strict rules for better code in tests",
"ergebnis/phpstan-rules": "[--dev] Provides additional rules for phpstan/phpstan",
"korbeil/phpstan-generic-rules": "[--dev] Generic rules extensions for PHPStan",
"phpstan/extension-installer": "[--dev] Composer plugin for automatic installation of PHPStan extensions",
"phpstan/phpstan": "[--dev] PHPStan - PHP Static Analysis Tool",
"phpstan/phpstan-beberlei-assert": "[--dev] PHPStan beberlei/assert extension",
"phpstan/phpstan-deprecation-rules": "[--dev] PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits",
"phpstan/phpstan-phpunit": "[--dev] PHPUnit extensions and rules for PHPStan",
"phpstan/phpstan-strict-rules": "[--dev] Extra strict and opinionated rules for PHPStan",
"thecodingmachine/phpstan-safe-rule": "[--dev] A PHPStan rule to be used with the thecodingmachine/safe package",
"thecodingmachine/phpstan-strict-rules": "[--dev] A set of additional rules for PHPStan based on best practices followed at TheCodingMachine",
"thecodingmachine/safe": "All PHP functions, rewritten to throw exceptions instead of returning false"
},
"scripts": {
"cs-e:test": "phpcs --colors -n",
"cs:fix": "phpcbf --colors",
"cs:test": "phpcs --colors",
"lint:test": "parallel-lint --no-progress --blame --exclude vendor .",
"fix": [
"@cs:fix"
],
"test": [
"@lint:test",
"@cs:test"
]
},
"scripts-descriptions": {
"cs-e:test": "Run PHP_CodeSniffer tests, show only errors",
"cs:fix": "Run PHP_CodeSniffer fixes",
"cs:test": "Run PHP_CodeSniffer tests",
"fix": "Run all fixes!",
"lint:test": "Run PHP Parallel Lint tests",
"test": "Run all tests!"
}
}