Skip to content

Commit

Permalink
Update dependencies (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloKowalczyk authored Jun 11, 2022
1 parent bab833c commit f5e3a93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 266 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php_cs.dist export-ignore
/.scrutinizer.yml export-ignore
/.php-cs-fixer.dist.php export-ignore
/.travis.yml export-ignore
5 changes: 3 additions & 2 deletions .php_cs.dist → .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

declare(strict_types=1);

return PhpCsFixer\Config::create()
return (new PhpCsFixer\Config())
->setUsingCache(false)
->setRules([
'native_function_invocation' => [
'exclude' => [
'_'
]
],
'include' => ['@all'],
],
])
->setRiskyAllowed(true)
Expand Down
258 changes: 0 additions & 258 deletions .scrutinizer.yml

This file was deleted.

7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@
"issues": "https://github.com/jsonapiphp/jsonapi/issues"
},
"require": {
"php": ">=7.1.0"
"php": ">=7.4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^7.0",
"scrutinizer/ocular": "^1.4",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^2.9"
},
"minimum-stability": "stable",
Expand Down

0 comments on commit f5e3a93

Please sign in to comment.