Skip to content

Commit ec0b64b

Browse files
authored
Merge pull request #13 from derrabus/bump/deps
Allow psr/log 2 & 3
2 parents 4b89e97 + 4a3d4ef commit ec0b64b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
composer.lock
22
.idea/
33
vendor/
4+
.phpunit.result.cache

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,28 @@
2020
],
2121
"require": {
2222
"php": "^7.4|^8.0",
23-
"psr/log": "^1.0",
23+
"psr/log": "^1|^2|^3",
2424
"symfony/process": ">=4.4"
2525
},
2626
"require-dev": {
2727
"phpunit/phpunit": "^9.5",
2828
"phpspec/prophecy-phpunit": "^2.0",
2929
"squizlabs/php_codesniffer": "^3.6",
3030
"brainbits/phpcs-standard": "^5.0",
31-
"phpstan/phpstan": "^0.12.99",
32-
"brainbits/phpstan-rules": "^2.0"
31+
"phpstan/phpstan": "^1.8.2",
32+
"brainbits/phpstan-rules": "^3.0.0"
3333
},
3434
"autoload": {
3535
"psr-4": { "Brainbits\\Transcoder\\": "src/" }
3636
},
3737
"autoload-dev": {
3838
"psr-4": { "Brainbits\\Transcoder\\Tests\\": "tests/" }
3939
},
40+
"config": {
41+
"allow-plugins": {
42+
"dealerdirect/phpcodesniffer-composer-installer": true
43+
}
44+
},
4045
"extra": {
4146
"branch-alias": {
4247
"dev-master": "4.0-dev"

0 commit comments

Comments
 (0)