Download the PHP package nanoblocktech/shipping-calculator without Composer

On this page you can find all versions of the php package nanoblocktech/shipping-calculator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package shipping-calculator

Class Shipping Calculator

Determines the shipping fee based on the customer's longitude and latitude to the business location.

Functions

Installation Guide via Composer:

Usages

Methods

ShippingCalculator

Setting up your calculations $calculator = new ShippingCalculator(ShippingCalculator::KM);

Methods And Param Descriptions
setOrigin(float latitude, float longitude): self Set the origin location latitude and longitude
setDestination(float latitude, float longitude): self Set the destination location latitude and longitude
setCharge(float amount): self Set initial shipping charge per calculation distance
setSpeed(int speed): self Set speed in units per hour, to calculate estimated time.
getDistance(): ShippingDistance Calculate the distance between the origin/destination and return distance instance.

ShippingDistance

The method which $distance = $calculator->getDistance(); is returned

Methods And Param Descriptions
toDistance(): float Get the calculated distance between the origin and destination latitude and longitude.
toString(): string Get the distance as a string (e.g., '10km').
toCurrency(int decimals = 2, string symbol): string Convert the distance to currency format with optional currency symbol and decimal places.
toMile(): float Convert the distance from kilometer to miles.
toKilometer(): float Convert the distance from miles to kilometers.
getCurrency(int decimal = 2): string Get the calculated currency value based on the distance and initial amount.
getCharges(): float Get the calculated charges
getTime(): ShippingTime Get distance time instance

ShippingTime

The method which $time = $distance->getTime(); is returned

Methods And Param Descriptions
toTime(): float Get the calculated time required to cover the distance.
toHours(): int Convert the total time to hours.
toSeconds(): int Get the total time in seconds.
toMinutes(): int Convert the total time to minutes.
toDays(): int Convert the total time to days.
toString(): string Get a formatted string representation of the total time.
toObject(): object Get an object representation of the total time.

All versions of shipping-calculator with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0 || ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nanoblocktech/shipping-calculator contains the following files

Loading the files please wait ....