Skip to content

Commit f6f4830

Browse files
committed
tweak composer config
1 parent e3ad353 commit f6f4830

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

.php-cs-fixer.dist.php

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
EOS;
1212

1313
return (new PhpCsFixer\Config)
14-
->setUsingCache(false)
1514
->setRules([
1615
'@PHP71Migration' => true,
1716
'header_comment' => ['header' => $PREDIS_HEADER],

composer.json

+12-18
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@
1313
"name": "Till Krüss",
1414
"homepage": "https://till.im",
1515
"role": "Maintainer"
16-
},
17-
{
18-
"name": "Daniele Alessandri",
19-
"email": "[email protected]",
20-
"homepage": "http://clorophilla.net",
21-
"role": "Creator"
2216
}
2317
],
2418
"funding": [
@@ -31,24 +25,24 @@
3125
"php": "^7.2 || ^8.0"
3226
},
3327
"require-dev": {
34-
"phpunit/phpunit": "^8.0 || ~9.4.4",
35-
"friendsofphp/php-cs-fixer": "~3.2.0 || ^3.13"
28+
"friendsofphp/php-cs-fixer": "^3.13",
29+
"phpstan/phpstan": "^1.9",
30+
"phpunit/phpunit": "^8.0 || ~9.4.4"
3631
},
3732
"scripts": {
38-
"style": "vendor/bin/php-cs-fixer fix --diff --dry-run",
39-
"style:fix": "vendor/bin/php-cs-fixer fix"
40-
},
41-
"suggest": {
42-
"ext-curl": "Allows access to Webdis when paired with phpiredis"
33+
"phpstan": "phpstan analyse",
34+
"style": "php-cs-fixer fix --diff --dry-run",
35+
"style:fix": "php-cs-fixer fix"
4336
},
4437
"autoload": {
4538
"psr-4": {
4639
"Predis\\": "src/"
4740
}
4841
},
49-
"extra": {
50-
"branch-alias": {
51-
"dev-main": "2.0-dev"
52-
}
53-
}
42+
"config": {
43+
"sort-packages": true,
44+
"preferred-install": "dist"
45+
},
46+
"minimum-stability": "dev",
47+
"prefer-stable": true
5448
}

0 commit comments

Comments
 (0)