Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependencies update #196

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
dependency-versions: locked
composer-options: --no-ansi --no-interaction --no-progress
- name: Run PHPStan analyse
run: vendor/bin/phpstan analyse
run: vendor/bin/phpstan analyse --memory-limit 2G
- name: Run Psalm analyse
run: vendor/bin/psalm
test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ ecs-fix:
static-analyze: phpstan psalm

phpstan:
vendor/bin/phpstan analyse
vendor/bin/phpstan analyse --memory-limit 2G
psalm:
vendor/bin/psalm
11 changes: 3 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"webmozart/assert": "^1.11"
},
"require-dev": {
"async-aws/dynamo-db": "^3.0",
"aws/aws-sdk-php": "3.295.0",
"async-aws/dynamo-db": "^3.1",
"aws/aws-sdk-php": "3.295.8",
"fakerphp/faker": "^1.23",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
Expand All @@ -30,7 +30,7 @@
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"symfony/error-handler": "^5.4 || ^6.4 || ^7.0",
"symplify/easy-coding-standard": "^12.0",
"symplify/easy-coding-standard": "^12.1",
"vimeo/psalm": "^5.18"
},
"suggest": {
Expand All @@ -55,10 +55,5 @@
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "2.1.x-dev"
}
}
}
Loading