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

Update package versions #1399

Merged
merged 8 commits into from
Feb 8, 2022
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
6 changes: 4 additions & 2 deletions .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ declare -a remove_files=(
.idea
.travis
docker
node_modules
vendor/willdurand/geocoder/tests
_ide_helper.php
.env
.dockerignore
.dpl
.editorconfig
Expand All @@ -38,9 +41,8 @@ declare -a remove_files=(
phpvms.iml
Procfile
phpstan.neon
node_modules
symfony.lock
composer.phar
vendor/willdurand/geocoder/tests
)

for file in "${remove_files[@]}"; do
Expand Down
2 changes: 1 addition & 1 deletion app/Exceptions/BidNotFound.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function getErrorDetails(): string
public function getErrorMetadata(): array
{
return [
'bid_id' => $this->bid_id
'bid_id' => $this->bid_id,
];
}
}
18 changes: 12 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,21 @@
"ext-bcmath": "*",
"ext-pdo": "*",
"ext-intl": "*",
"cache/adapter-common": "1.2.0",
"cache/array-adapter": "1.1.0",
"cache/hierarchical-cache": "1.1.0",
"symfony/flex": "^1.0",
"symfony/polyfill-intl-icu": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/deprecation-contracts": "^v2.5.0",
"symfony/event-dispatcher-contracts": "^2",
"symfony/property-info": "^5.4",
"symfony/string": "^5.4",
"symfony/translation": "^5.4",
"psr/container": "1.1.1",
"composer/composer": "~2.0",
"composer/installers": "~1.0",
Expand All @@ -46,21 +52,21 @@
"laravel/helpers": "^1.4",
"laravelcollective/html": "~6.2.0",
"jeremykendall/php-domain-parser": "~5.7.2",
"league/commonmark": "~1.6",
"league/commonmark": "~1.6.0",
"league/csv": "9.7.*",
"league/geotools": "0.8.*",
"league/iso3166": "^3.0.0",
"markrogoyski/math-php": "^1.10",
"markrogoyski/math-php": "^1.11.0",
"myclabs/deep-copy": "~1.10.0",
"nabeel/vacentral": "~2.0",
"nwidart/laravel-modules": "^8.2",
"nwidart/laravel-modules": "^8.2.0",
"php-units-of-measure/php-units-of-measure": "~2.1.0",
"phpvms/sample-module": "^1.0",
"pragmarx/version": ">=v1.2.3",
"prettus/l5-repository": "~2.7.0",
"santigarcor/laratrust": "~6.3",
"santigarcor/laratrust": "~6.3.0",
"semver/semver": "~1.1.0",
"spatie/valuestore": "~1.2",
"spatie/valuestore": "~1.2.0",
"symfony/polyfill-iconv": "~1.22.0",
"tivie/php-os-detector": "~1.1.0",
"vlucas/phpdotenv": "^5.3.0",
Expand Down Expand Up @@ -114,7 +120,7 @@
"module-dir": "modules",
"symfony": {
"require": "^5.4"
}
}
},
"scripts": {
"pre-package-uninstall": [
Expand Down
Loading