Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DvdGiessen committed Jun 22, 2020
1 parent e7535b6 commit b36e81b
Show file tree
Hide file tree
Showing 5 changed files with 4,559 additions and 744 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ corrupted serializations, a problem often seen when less advanced search-replace
scripts were used before on the same database.

## Requirements
Minimum supported PHP version is 5.3 and is tested with versions up to 7.1. PDO
Minimum supported PHP version is 5.3 and is tested with versions up to 7.4. PDO
is used for connecting with the database, so make sure you have the `pdo` and
`pdo_mysql` extensions enabled.

Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@
"ext-pdo_mysql": "*"
},
"require-dev": {
"eloquent/composer-npm-bridge": "4.0",
"friendsofphp/php-cs-fixer": "^2.12",
"phpunit/dbunit": "^4.0",
"phpunit/phpunit": "^7.2",
"squizlabs/php_codesniffer": "^3.3",
"vimeo/psalm": "^2.0"
"eloquent/composer-npm-bridge": "4.1",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.4",
"vimeo/psalm": "^3.11"
},
"scripts": {
"compile": "php -f compile.php",
"fix": [
"php-cs-fixer fix",
"phpcbf --standard=PSR2 src test"
],
"lint": [
"php-cs-fixer fix --dry-run --diff",
"phpcs --standard=PSR2 src test",
"phpcs --standard=PSR12 src test",
"psalm"
],
"fix": [
"php-cs-fixer fix",
"phpcbf --standard=PSR12 src test",
"psalter --issues=MissingReturnType,MissingClosureReturnType,InvalidReturnType,InvalidNullableReturnType,InvalidFalsableReturnType,MissingParamType,MismatchingDocblockParamType,MismatchingDocblockReturnType,PossiblyUndefinedVariable,PossiblyUndefinedGlobalVariable"
],
"test": "phpunit"
}
}
Loading

0 comments on commit b36e81b

Please sign in to comment.