Skip to content

Commit

Permalink
fix: remove hard geocoding dependancy
Browse files Browse the repository at this point in the history
  • Loading branch information
wilr committed Sep 28, 2023
1 parent 13551a3 commit 476bf32
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ dwsync.xml
intermediate
publish
*.php_cs.cache

/vendor
/composer.lock
/app
/public
43 changes: 29 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
{
"name": "silvershop/shipping",
"description": "Shipping methods for the SilverShop.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "ecommerce", "shop", "shipping", "freight", "silvershop"],
"license": "BSD-3-Clause",
"require": {
"name": "silvershop/shipping",
"description": "Shipping methods for the SilverShop.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"ecommerce",
"shop",
"shipping",
"freight",
"silvershop"
],
"license": "BSD-3-Clause",
"require": {
"silvershop/core": "^4",
"silvershop/geocoding": "^3",
"silvershop/silverstripe-hasonefield": "^4"
},
"authors": [{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-shipping/graphs/contributors"
}],
"silvershop/silverstripe-hasonefield": "^4"
},
"authors": [
{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-shipping/graphs/contributors"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
Expand All @@ -33,5 +41,12 @@
}
},
"prefer-stable": false,
"minimum-stability": "dev"
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": false,
"php-http/discovery": false,
"silverstripe/vendor-plugin": false
}
}
}

0 comments on commit 476bf32

Please sign in to comment.