Git Product home page Git Product logo

easypost-php's Introduction

Installation

Required PHP Extensions:

Clone the EasyPost PHP client repository:

git clone https://github.com/easypost/easypost-php

Include the EasyPost client in your PHP script:

require_once("/path/to/easypost-php/lib/easypost.php");

Example

<?php

require_once("lib/easypost.php");
EasyPost::setApiKey("cueqNZUb3ldeWTNX7MU3Mel8UXtaAMUi");

$to_param = array("street1" => "388 Townsend St", "street2" => "Apt 20", "city" => "San Francisco", "state" => "CA", "zip" => "94107");
$from_param = array("company" => "Simpler Postage Inc", "street1" => "764 Warehouse Ave", "street2" => "", "city" => "Kansas City", "state" => "KS", "zip" => "66101", "phone" => "620-123-4567");
$parcel_param = array("predefined_package" => "LargeFlatRateBox", "weight" => 100.0); // weight in ounces

$to_address = EasyPost_Address::create($to_param);
$from_address = EasyPost_Address::create($from_param);
$parcel = EasyPost_Parcel::create($parcel_param);

$shipment = EasyPost_Shipment::create(array(
  "to_address" => $to_address,
  "from_address" => $from_address,
  "parcel" => $parcel,
));

// print_r($shipment->rates);
   
$shipment->buy($shipment->lowest_rate());

echo $shipment->postage_label->label_url;

Documentation

Up-to-date documentation at: https://www.geteasypost.com/docs

Tests

Requires PHPUnit

phpunit tests/

easypost-php's People

Contributors

mdrollette avatar sawyer avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.