├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── UPGRADE_GUIDE.md ├── composer.json ├── lib ├── EasyPost │ ├── Address.php │ ├── AddressVerificationFieldError.php │ ├── ApiKey.php │ ├── Batch.php │ ├── Billing.php │ ├── Brand.php │ ├── CarrierAccount.php │ ├── CarrierDetail.php │ ├── Claim.php │ ├── Constant │ │ └── Constants.php │ ├── CustomsInfo.php │ ├── CustomsItem.php │ ├── EasyPostClient.php │ ├── EasyPostObject.php │ ├── EndShipper.php │ ├── Event.php │ ├── Exception │ │ ├── Api │ │ │ ├── ApiException.php │ │ │ ├── BadRequestException.php │ │ │ ├── EncodingException.php │ │ │ ├── ExternalApiException.php │ │ │ ├── ForbiddenException.php │ │ │ ├── GatewayTimeoutException.php │ │ │ ├── HttpException.php │ │ │ ├── InternalServerException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── JsonException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── NotFoundException.php │ │ │ ├── PaymentException.php │ │ │ ├── RateLimitException.php │ │ │ ├── RedirectException.php │ │ │ ├── ServiceUnavailableException.php │ │ │ ├── TimeoutException.php │ │ │ ├── UnauthorizedException.php │ │ │ └── UnknownApiException.php │ │ └── General │ │ │ ├── EasyPostException.php │ │ │ ├── EndOfPaginationException.php │ │ │ ├── FilteringException.php │ │ │ ├── InvalidObjectException.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MissingParameterException.php │ │ │ └── SignatureVerificationException.php │ ├── Fee.php │ ├── FieldError.php │ ├── Hook │ │ ├── EventHook.php │ │ ├── RequestHook.php │ │ └── ResponseHook.php │ ├── Http │ │ └── Requestor.php │ ├── Insurance.php │ ├── Message.php │ ├── Order.php │ ├── Parcel.php │ ├── Payload.php │ ├── Pickup.php │ ├── PickupRate.php │ ├── PostageLabel.php │ ├── Rate.php │ ├── ReferralCustomer.php │ ├── Refund.php │ ├── Report.php │ ├── ScanForm.php │ ├── Service │ │ ├── AddressService.php │ │ ├── ApiKeyService.php │ │ ├── BaseService.php │ │ ├── BatchService.php │ │ ├── BetaRateService.php │ │ ├── BetaReferralCustomerService.php │ │ ├── BillingService.php │ │ ├── CarrierAccountService.php │ │ ├── CarrierMetadataService.php │ │ ├── ClaimService.php │ │ ├── CustomerPortalService.php │ │ ├── CustomsInfoService.php │ │ ├── CustomsItemService.php │ │ ├── EmbeddableService.php │ │ ├── EndShipperService.php │ │ ├── EventService.php │ │ ├── InsuranceService.php │ │ ├── LumaService.php │ │ ├── OrderService.php │ │ ├── ParcelService.php │ │ ├── PickupService.php │ │ ├── RateService.php │ │ ├── ReferralCustomerService.php │ │ ├── RefundService.php │ │ ├── ReportService.php │ │ ├── ScanFormService.php │ │ ├── ShipmentService.php │ │ ├── SmartRateService.php │ │ ├── TrackerService.php │ │ ├── UserService.php │ │ └── WebhookService.php │ ├── Shipment.php │ ├── TaxIdentifier.php │ ├── Tracker.php │ ├── TrackingDetail.php │ ├── TrackingLocation.php │ ├── User.php │ ├── Util │ │ ├── InternalUtil.php │ │ └── Util.php │ ├── Verification.php │ ├── VerificationDetails.php │ ├── Verifications.php │ └── Webhook.php └── easypost.php ├── phpstan.neon ├── phpunit.xml.dist └── test ├── EasyPost ├── AddressTest.php ├── ApiKeyTest.php ├── BatchTest.php ├── BetaRateTest.php ├── BetaReferralCustomerTest.php ├── BillingTest.php ├── CarrierAccountTest.php ├── CarrierMetadataTest.php ├── ClaimTest.php ├── CustomerPortalTest.php ├── CustomsInfoTest.php ├── CustomsItemTest.php ├── EasyPostClientTest.php ├── EasyPostObjectTest.php ├── EmbeddableTest.php ├── EndShipperTest.php ├── ErrorTest.php ├── EventTest.php ├── Fixture.php ├── HookTest.php ├── InsuranceTest.php ├── LumaTest.php ├── Mocking │ ├── MockRequest.php │ ├── MockRequestMatchRule.php │ ├── MockRequestResponseInfo.php │ └── MockingUtility.php ├── OrderTest.php ├── ParcelTest.php ├── PickupTest.php ├── RateTest.php ├── ReferralCustomerTest.php ├── RefundTest.php ├── ReportTest.php ├── RequireTest.php ├── ScanFormTest.php ├── ShipmentTest.php ├── SmartRateTest.php ├── TestUtil.php ├── TrackerTest.php ├── UserTest.php ├── UtilTest.php └── WebhookTest.php ├── bootstrap.php └── cassettes ├── addresses ├── all.yml ├── create.yml ├── createAndVerify.yml ├── createAndVerifyCarrier.yml ├── createVerify.yml ├── createVerifyArray.yml ├── createVerifyCarrier.yml ├── createVerifyStrict.yml ├── getNextPage.yml ├── retrieve.yml ├── verify.yml └── verifyInvalid.yml ├── apiKeys ├── allApiKeys.yml ├── authenticatedUserApiKeys.yml └── childUserApiKeys.yml ├── batches ├── addRemoveShipment.yml ├── all.yml ├── buy.yml ├── create.yml ├── createScanForm.yml ├── label.yml └── retrieve.yml ├── beta ├── rate │ ├── retrieveLowestStatelessRates.yml │ └── retrieveStatelessRates.yml └── referral_customers │ ├── addPaymentMethod.yml │ ├── refundByAmount.yml │ ├── refundByPaymentLog.yml │ ├── testCreateBankAccountClientSecret.yml │ └── testCreateCreditCardClientSecret.yml ├── carrier_accounts ├── all.yml ├── create.yml ├── createWithCustomWorkflow.yml ├── create_amazon.yml ├── create_ups.yml ├── delete.yml ├── retrieve.yml ├── types.yml ├── update.yml └── update_ups.yml ├── carrier_metadata ├── retrieveCarrierMetadata.yml └── retrieveCarrierMetadataWithFilters.yml ├── claim ├── all.yml ├── cancel.yml ├── create.yml ├── getNextPage.yml └── retrieve.yml ├── customer_portal └── createAccountLink.yml ├── customs_info ├── create.yml └── retrieve.yml ├── customs_items ├── create.yml └── retrieve.yml ├── embeddables └── createSession.yml ├── end_shipper ├── all.yml ├── create.yml ├── retrieve.yml └── update.yml ├── errors ├── errors.yml └── errorsAlternativeFormat.yml ├── events ├── all.yml ├── getNextPage.yml ├── retrieve.yml ├── retrieve_all_payloads.yml └── retrieve_payload.yml ├── hooks ├── request.yml ├── response.yml └── unsubscribe.yml ├── insurance ├── all.yml ├── create.yml ├── getNextPage.yml ├── refund.yml └── retrieve.yml ├── luma └── getPromise.yml ├── orders ├── buy.yml ├── buyRateObject.yml ├── create.yml ├── getRates.yml ├── lowestRate.yml └── retrieve.yml ├── parcels ├── create.yml └── retrieve.yml ├── pickups ├── all.yml ├── buy.yml ├── cancel.yml ├── create.yml ├── getNextPage.yml ├── lowestRate.yml └── retrieve.yml ├── rates └── retrieve.yml ├── referral_customers ├── addBankAccountFromStripe.yml ├── addCreditCard.yml ├── addCreditCardFromStripe.yml ├── all.yml ├── create.yml ├── getNextPage.yml └── updateEmail.yml ├── refunds ├── all.yml ├── create.yml ├── getNextPage.yml └── retrieve.yml ├── reports ├── all.yml ├── createCustomAdditionalColumnReport.yml ├── createCustomColumnReport.yml ├── createReport.yml ├── getNextPage.yml └── retrieveReport.yml ├── scan_forms ├── all.yml ├── create.yml ├── getNextPage.yml └── retrieve.yml ├── shipment ├── buyLuma.yml └── createAndBuyLuma.yml ├── shipments ├── all.yml ├── buy.yml ├── buyRateObject.yml ├── buyShipmentWithEndShipper.yml ├── convertLabel.yml ├── convertLabelUnwrappedParam.yml ├── create.yml ├── createEmptyObjects.yml ├── createTaxIdentifiers.yml ├── createWithIds.yml ├── generateForm.yml ├── getNextPage.yml ├── insure.yml ├── insureUnwrappedParam.yml ├── lowestRate.yml ├── lowestRateExclusions.yml ├── lowestSmartRateVariations.yml ├── recommendShipDate.yml ├── refund.yml ├── regenerateRates.yml ├── retrieve.yml ├── retrieveEstimatedDeliveryDate.yml └── smartrates.yml ├── smartrate ├── estimatedDeliveryDate.yml └── recommendShipDate.yml ├── trackers ├── all.yml ├── create.yml ├── createUnwrappedParam.yml ├── getNextPage.yml ├── retrieve.yml └── retrieveBatch.yml ├── users ├── allChildren.yml ├── brand.yml ├── create.yml ├── delete.yml ├── getNextPageOfChildren.yml ├── retrieve.yml ├── retrieveMe.yml └── update.yml └── webhooks ├── all.yml ├── create.yml ├── delete.yml ├── retrieve.yml └── update.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/UPGRADE_GUIDE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/composer.json -------------------------------------------------------------------------------- /lib/EasyPost/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Address.php -------------------------------------------------------------------------------- /lib/EasyPost/AddressVerificationFieldError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/AddressVerificationFieldError.php -------------------------------------------------------------------------------- /lib/EasyPost/ApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/ApiKey.php -------------------------------------------------------------------------------- /lib/EasyPost/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Batch.php -------------------------------------------------------------------------------- /lib/EasyPost/Billing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Billing.php -------------------------------------------------------------------------------- /lib/EasyPost/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Brand.php -------------------------------------------------------------------------------- /lib/EasyPost/CarrierAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/CarrierAccount.php -------------------------------------------------------------------------------- /lib/EasyPost/CarrierDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/CarrierDetail.php -------------------------------------------------------------------------------- /lib/EasyPost/Claim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Claim.php -------------------------------------------------------------------------------- /lib/EasyPost/Constant/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Constant/Constants.php -------------------------------------------------------------------------------- /lib/EasyPost/CustomsInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/CustomsInfo.php -------------------------------------------------------------------------------- /lib/EasyPost/CustomsItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/CustomsItem.php -------------------------------------------------------------------------------- /lib/EasyPost/EasyPostClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/EasyPostClient.php -------------------------------------------------------------------------------- /lib/EasyPost/EasyPostObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/EasyPostObject.php -------------------------------------------------------------------------------- /lib/EasyPost/EndShipper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/EndShipper.php -------------------------------------------------------------------------------- /lib/EasyPost/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Event.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/ApiException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/BadRequestException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/EncodingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/EncodingException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/ExternalApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/ExternalApiException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/ForbiddenException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/GatewayTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/GatewayTimeoutException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/HttpException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/InternalServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/InternalServerException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/InvalidRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/InvalidRequestException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/JsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/JsonException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/MethodNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/MethodNotAllowedException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/NotFoundException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/PaymentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/PaymentException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/RateLimitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/RateLimitException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/RedirectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/RedirectException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/ServiceUnavailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/ServiceUnavailableException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/TimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/TimeoutException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/UnauthorizedException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/Api/UnknownApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/Api/UnknownApiException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/EasyPostException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/EasyPostException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/EndOfPaginationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/EndOfPaginationException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/FilteringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/FilteringException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/InvalidObjectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/InvalidObjectException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/InvalidParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/InvalidParameterException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/MissingParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/MissingParameterException.php -------------------------------------------------------------------------------- /lib/EasyPost/Exception/General/SignatureVerificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Exception/General/SignatureVerificationException.php -------------------------------------------------------------------------------- /lib/EasyPost/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Fee.php -------------------------------------------------------------------------------- /lib/EasyPost/FieldError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/FieldError.php -------------------------------------------------------------------------------- /lib/EasyPost/Hook/EventHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Hook/EventHook.php -------------------------------------------------------------------------------- /lib/EasyPost/Hook/RequestHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Hook/RequestHook.php -------------------------------------------------------------------------------- /lib/EasyPost/Hook/ResponseHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Hook/ResponseHook.php -------------------------------------------------------------------------------- /lib/EasyPost/Http/Requestor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Http/Requestor.php -------------------------------------------------------------------------------- /lib/EasyPost/Insurance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Insurance.php -------------------------------------------------------------------------------- /lib/EasyPost/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Message.php -------------------------------------------------------------------------------- /lib/EasyPost/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Order.php -------------------------------------------------------------------------------- /lib/EasyPost/Parcel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Parcel.php -------------------------------------------------------------------------------- /lib/EasyPost/Payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Payload.php -------------------------------------------------------------------------------- /lib/EasyPost/Pickup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Pickup.php -------------------------------------------------------------------------------- /lib/EasyPost/PickupRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/PickupRate.php -------------------------------------------------------------------------------- /lib/EasyPost/PostageLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/PostageLabel.php -------------------------------------------------------------------------------- /lib/EasyPost/Rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Rate.php -------------------------------------------------------------------------------- /lib/EasyPost/ReferralCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/ReferralCustomer.php -------------------------------------------------------------------------------- /lib/EasyPost/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Refund.php -------------------------------------------------------------------------------- /lib/EasyPost/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Report.php -------------------------------------------------------------------------------- /lib/EasyPost/ScanForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/ScanForm.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/AddressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/AddressService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ApiKeyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ApiKeyService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/BaseService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/BatchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/BatchService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/BetaRateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/BetaRateService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/BetaReferralCustomerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/BetaReferralCustomerService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/BillingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/BillingService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/CarrierAccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/CarrierAccountService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/CarrierMetadataService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/CarrierMetadataService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ClaimService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ClaimService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/CustomerPortalService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/CustomerPortalService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/CustomsInfoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/CustomsInfoService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/CustomsItemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/CustomsItemService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/EmbeddableService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/EmbeddableService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/EndShipperService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/EndShipperService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/EventService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/EventService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/InsuranceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/InsuranceService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/LumaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/LumaService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/OrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/OrderService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ParcelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ParcelService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/PickupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/PickupService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/RateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/RateService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ReferralCustomerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ReferralCustomerService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/RefundService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/RefundService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ReportService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ReportService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ScanFormService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ScanFormService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/ShipmentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/ShipmentService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/SmartRateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/SmartRateService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/TrackerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/TrackerService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/UserService.php -------------------------------------------------------------------------------- /lib/EasyPost/Service/WebhookService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Service/WebhookService.php -------------------------------------------------------------------------------- /lib/EasyPost/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Shipment.php -------------------------------------------------------------------------------- /lib/EasyPost/TaxIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/TaxIdentifier.php -------------------------------------------------------------------------------- /lib/EasyPost/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Tracker.php -------------------------------------------------------------------------------- /lib/EasyPost/TrackingDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/TrackingDetail.php -------------------------------------------------------------------------------- /lib/EasyPost/TrackingLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/TrackingLocation.php -------------------------------------------------------------------------------- /lib/EasyPost/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/User.php -------------------------------------------------------------------------------- /lib/EasyPost/Util/InternalUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Util/InternalUtil.php -------------------------------------------------------------------------------- /lib/EasyPost/Util/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Util/Util.php -------------------------------------------------------------------------------- /lib/EasyPost/Verification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Verification.php -------------------------------------------------------------------------------- /lib/EasyPost/VerificationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/VerificationDetails.php -------------------------------------------------------------------------------- /lib/EasyPost/Verifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Verifications.php -------------------------------------------------------------------------------- /lib/EasyPost/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/EasyPost/Webhook.php -------------------------------------------------------------------------------- /lib/easypost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/lib/easypost.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /test/EasyPost/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/AddressTest.php -------------------------------------------------------------------------------- /test/EasyPost/ApiKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ApiKeyTest.php -------------------------------------------------------------------------------- /test/EasyPost/BatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/BatchTest.php -------------------------------------------------------------------------------- /test/EasyPost/BetaRateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/BetaRateTest.php -------------------------------------------------------------------------------- /test/EasyPost/BetaReferralCustomerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/BetaReferralCustomerTest.php -------------------------------------------------------------------------------- /test/EasyPost/BillingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/BillingTest.php -------------------------------------------------------------------------------- /test/EasyPost/CarrierAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/CarrierAccountTest.php -------------------------------------------------------------------------------- /test/EasyPost/CarrierMetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/CarrierMetadataTest.php -------------------------------------------------------------------------------- /test/EasyPost/ClaimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ClaimTest.php -------------------------------------------------------------------------------- /test/EasyPost/CustomerPortalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/CustomerPortalTest.php -------------------------------------------------------------------------------- /test/EasyPost/CustomsInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/CustomsInfoTest.php -------------------------------------------------------------------------------- /test/EasyPost/CustomsItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/CustomsItemTest.php -------------------------------------------------------------------------------- /test/EasyPost/EasyPostClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/EasyPostClientTest.php -------------------------------------------------------------------------------- /test/EasyPost/EasyPostObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/EasyPostObjectTest.php -------------------------------------------------------------------------------- /test/EasyPost/EmbeddableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/EmbeddableTest.php -------------------------------------------------------------------------------- /test/EasyPost/EndShipperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/EndShipperTest.php -------------------------------------------------------------------------------- /test/EasyPost/ErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ErrorTest.php -------------------------------------------------------------------------------- /test/EasyPost/EventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/EventTest.php -------------------------------------------------------------------------------- /test/EasyPost/Fixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/Fixture.php -------------------------------------------------------------------------------- /test/EasyPost/HookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/HookTest.php -------------------------------------------------------------------------------- /test/EasyPost/InsuranceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/InsuranceTest.php -------------------------------------------------------------------------------- /test/EasyPost/LumaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/LumaTest.php -------------------------------------------------------------------------------- /test/EasyPost/Mocking/MockRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/Mocking/MockRequest.php -------------------------------------------------------------------------------- /test/EasyPost/Mocking/MockRequestMatchRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/Mocking/MockRequestMatchRule.php -------------------------------------------------------------------------------- /test/EasyPost/Mocking/MockRequestResponseInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/Mocking/MockRequestResponseInfo.php -------------------------------------------------------------------------------- /test/EasyPost/Mocking/MockingUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/Mocking/MockingUtility.php -------------------------------------------------------------------------------- /test/EasyPost/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/OrderTest.php -------------------------------------------------------------------------------- /test/EasyPost/ParcelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ParcelTest.php -------------------------------------------------------------------------------- /test/EasyPost/PickupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/PickupTest.php -------------------------------------------------------------------------------- /test/EasyPost/RateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/RateTest.php -------------------------------------------------------------------------------- /test/EasyPost/ReferralCustomerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ReferralCustomerTest.php -------------------------------------------------------------------------------- /test/EasyPost/RefundTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/RefundTest.php -------------------------------------------------------------------------------- /test/EasyPost/ReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ReportTest.php -------------------------------------------------------------------------------- /test/EasyPost/RequireTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/RequireTest.php -------------------------------------------------------------------------------- /test/EasyPost/ScanFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ScanFormTest.php -------------------------------------------------------------------------------- /test/EasyPost/ShipmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/ShipmentTest.php -------------------------------------------------------------------------------- /test/EasyPost/SmartRateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/SmartRateTest.php -------------------------------------------------------------------------------- /test/EasyPost/TestUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/TestUtil.php -------------------------------------------------------------------------------- /test/EasyPost/TrackerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/TrackerTest.php -------------------------------------------------------------------------------- /test/EasyPost/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/UserTest.php -------------------------------------------------------------------------------- /test/EasyPost/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/UtilTest.php -------------------------------------------------------------------------------- /test/EasyPost/WebhookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/EasyPost/WebhookTest.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/cassettes/addresses/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/all.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/create.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createAndVerify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createAndVerify.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createAndVerifyCarrier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createAndVerifyCarrier.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createVerify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createVerify.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createVerifyArray.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createVerifyArray.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createVerifyCarrier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createVerifyCarrier.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/createVerifyStrict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/createVerifyStrict.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/verify.yml -------------------------------------------------------------------------------- /test/cassettes/addresses/verifyInvalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/addresses/verifyInvalid.yml -------------------------------------------------------------------------------- /test/cassettes/apiKeys/allApiKeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/apiKeys/allApiKeys.yml -------------------------------------------------------------------------------- /test/cassettes/apiKeys/authenticatedUserApiKeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/apiKeys/authenticatedUserApiKeys.yml -------------------------------------------------------------------------------- /test/cassettes/apiKeys/childUserApiKeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/apiKeys/childUserApiKeys.yml -------------------------------------------------------------------------------- /test/cassettes/batches/addRemoveShipment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/addRemoveShipment.yml -------------------------------------------------------------------------------- /test/cassettes/batches/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/all.yml -------------------------------------------------------------------------------- /test/cassettes/batches/buy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/buy.yml -------------------------------------------------------------------------------- /test/cassettes/batches/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/create.yml -------------------------------------------------------------------------------- /test/cassettes/batches/createScanForm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/createScanForm.yml -------------------------------------------------------------------------------- /test/cassettes/batches/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/label.yml -------------------------------------------------------------------------------- /test/cassettes/batches/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/batches/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/beta/rate/retrieveLowestStatelessRates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/rate/retrieveLowestStatelessRates.yml -------------------------------------------------------------------------------- /test/cassettes/beta/rate/retrieveStatelessRates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/rate/retrieveStatelessRates.yml -------------------------------------------------------------------------------- /test/cassettes/beta/referral_customers/addPaymentMethod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/referral_customers/addPaymentMethod.yml -------------------------------------------------------------------------------- /test/cassettes/beta/referral_customers/refundByAmount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/referral_customers/refundByAmount.yml -------------------------------------------------------------------------------- /test/cassettes/beta/referral_customers/refundByPaymentLog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/referral_customers/refundByPaymentLog.yml -------------------------------------------------------------------------------- /test/cassettes/beta/referral_customers/testCreateBankAccountClientSecret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/referral_customers/testCreateBankAccountClientSecret.yml -------------------------------------------------------------------------------- /test/cassettes/beta/referral_customers/testCreateCreditCardClientSecret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/beta/referral_customers/testCreateCreditCardClientSecret.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/all.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/create.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/createWithCustomWorkflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/createWithCustomWorkflow.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/create_amazon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/create_amazon.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/create_ups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/create_ups.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/delete.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/types.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/update.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_accounts/update_ups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_accounts/update_ups.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_metadata/retrieveCarrierMetadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_metadata/retrieveCarrierMetadata.yml -------------------------------------------------------------------------------- /test/cassettes/carrier_metadata/retrieveCarrierMetadataWithFilters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/carrier_metadata/retrieveCarrierMetadataWithFilters.yml -------------------------------------------------------------------------------- /test/cassettes/claim/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/claim/all.yml -------------------------------------------------------------------------------- /test/cassettes/claim/cancel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/claim/cancel.yml -------------------------------------------------------------------------------- /test/cassettes/claim/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/claim/create.yml -------------------------------------------------------------------------------- /test/cassettes/claim/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/claim/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/claim/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/claim/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/customer_portal/createAccountLink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/customer_portal/createAccountLink.yml -------------------------------------------------------------------------------- /test/cassettes/customs_info/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/customs_info/create.yml -------------------------------------------------------------------------------- /test/cassettes/customs_info/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/customs_info/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/customs_items/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/customs_items/create.yml -------------------------------------------------------------------------------- /test/cassettes/customs_items/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/customs_items/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/embeddables/createSession.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/embeddables/createSession.yml -------------------------------------------------------------------------------- /test/cassettes/end_shipper/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/end_shipper/all.yml -------------------------------------------------------------------------------- /test/cassettes/end_shipper/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/end_shipper/create.yml -------------------------------------------------------------------------------- /test/cassettes/end_shipper/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/end_shipper/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/end_shipper/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/end_shipper/update.yml -------------------------------------------------------------------------------- /test/cassettes/errors/errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/errors/errors.yml -------------------------------------------------------------------------------- /test/cassettes/errors/errorsAlternativeFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/errors/errorsAlternativeFormat.yml -------------------------------------------------------------------------------- /test/cassettes/events/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/events/all.yml -------------------------------------------------------------------------------- /test/cassettes/events/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/events/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/events/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/events/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/events/retrieve_all_payloads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/events/retrieve_all_payloads.yml -------------------------------------------------------------------------------- /test/cassettes/events/retrieve_payload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/events/retrieve_payload.yml -------------------------------------------------------------------------------- /test/cassettes/hooks/request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/hooks/request.yml -------------------------------------------------------------------------------- /test/cassettes/hooks/response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/hooks/response.yml -------------------------------------------------------------------------------- /test/cassettes/hooks/unsubscribe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/hooks/unsubscribe.yml -------------------------------------------------------------------------------- /test/cassettes/insurance/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/insurance/all.yml -------------------------------------------------------------------------------- /test/cassettes/insurance/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/insurance/create.yml -------------------------------------------------------------------------------- /test/cassettes/insurance/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/insurance/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/insurance/refund.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/insurance/refund.yml -------------------------------------------------------------------------------- /test/cassettes/insurance/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/insurance/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/luma/getPromise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/luma/getPromise.yml -------------------------------------------------------------------------------- /test/cassettes/orders/buy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/buy.yml -------------------------------------------------------------------------------- /test/cassettes/orders/buyRateObject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/buyRateObject.yml -------------------------------------------------------------------------------- /test/cassettes/orders/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/create.yml -------------------------------------------------------------------------------- /test/cassettes/orders/getRates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/getRates.yml -------------------------------------------------------------------------------- /test/cassettes/orders/lowestRate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/lowestRate.yml -------------------------------------------------------------------------------- /test/cassettes/orders/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/orders/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/parcels/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/parcels/create.yml -------------------------------------------------------------------------------- /test/cassettes/parcels/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/parcels/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/all.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/buy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/buy.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/cancel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/cancel.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/create.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/lowestRate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/lowestRate.yml -------------------------------------------------------------------------------- /test/cassettes/pickups/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/pickups/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/rates/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/rates/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/addBankAccountFromStripe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/addBankAccountFromStripe.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/addCreditCard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/addCreditCard.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/addCreditCardFromStripe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/addCreditCardFromStripe.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/all.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/create.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/referral_customers/updateEmail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/referral_customers/updateEmail.yml -------------------------------------------------------------------------------- /test/cassettes/refunds/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/refunds/all.yml -------------------------------------------------------------------------------- /test/cassettes/refunds/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/refunds/create.yml -------------------------------------------------------------------------------- /test/cassettes/refunds/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/refunds/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/refunds/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/refunds/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/reports/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/all.yml -------------------------------------------------------------------------------- /test/cassettes/reports/createCustomAdditionalColumnReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/createCustomAdditionalColumnReport.yml -------------------------------------------------------------------------------- /test/cassettes/reports/createCustomColumnReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/createCustomColumnReport.yml -------------------------------------------------------------------------------- /test/cassettes/reports/createReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/createReport.yml -------------------------------------------------------------------------------- /test/cassettes/reports/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/reports/retrieveReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/reports/retrieveReport.yml -------------------------------------------------------------------------------- /test/cassettes/scan_forms/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/scan_forms/all.yml -------------------------------------------------------------------------------- /test/cassettes/scan_forms/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/scan_forms/create.yml -------------------------------------------------------------------------------- /test/cassettes/scan_forms/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/scan_forms/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/scan_forms/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/scan_forms/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/shipment/buyLuma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipment/buyLuma.yml -------------------------------------------------------------------------------- /test/cassettes/shipment/createAndBuyLuma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipment/createAndBuyLuma.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/all.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/buy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/buy.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/buyRateObject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/buyRateObject.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/buyShipmentWithEndShipper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/buyShipmentWithEndShipper.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/convertLabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/convertLabel.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/convertLabelUnwrappedParam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/convertLabelUnwrappedParam.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/create.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/createEmptyObjects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/createEmptyObjects.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/createTaxIdentifiers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/createTaxIdentifiers.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/createWithIds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/createWithIds.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/generateForm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/generateForm.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/insure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/insure.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/insureUnwrappedParam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/insureUnwrappedParam.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/lowestRate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/lowestRate.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/lowestRateExclusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/lowestRateExclusions.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/lowestSmartRateVariations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/lowestSmartRateVariations.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/recommendShipDate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/recommendShipDate.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/refund.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/refund.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/regenerateRates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/regenerateRates.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/retrieveEstimatedDeliveryDate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/retrieveEstimatedDeliveryDate.yml -------------------------------------------------------------------------------- /test/cassettes/shipments/smartrates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/shipments/smartrates.yml -------------------------------------------------------------------------------- /test/cassettes/smartrate/estimatedDeliveryDate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/smartrate/estimatedDeliveryDate.yml -------------------------------------------------------------------------------- /test/cassettes/smartrate/recommendShipDate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/smartrate/recommendShipDate.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/all.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/create.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/createUnwrappedParam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/createUnwrappedParam.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/getNextPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/getNextPage.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/trackers/retrieveBatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/trackers/retrieveBatch.yml -------------------------------------------------------------------------------- /test/cassettes/users/allChildren.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/allChildren.yml -------------------------------------------------------------------------------- /test/cassettes/users/brand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/brand.yml -------------------------------------------------------------------------------- /test/cassettes/users/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/create.yml -------------------------------------------------------------------------------- /test/cassettes/users/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/delete.yml -------------------------------------------------------------------------------- /test/cassettes/users/getNextPageOfChildren.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/getNextPageOfChildren.yml -------------------------------------------------------------------------------- /test/cassettes/users/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/users/retrieveMe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/retrieveMe.yml -------------------------------------------------------------------------------- /test/cassettes/users/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/users/update.yml -------------------------------------------------------------------------------- /test/cassettes/webhooks/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/webhooks/all.yml -------------------------------------------------------------------------------- /test/cassettes/webhooks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/webhooks/create.yml -------------------------------------------------------------------------------- /test/cassettes/webhooks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/webhooks/delete.yml -------------------------------------------------------------------------------- /test/cassettes/webhooks/retrieve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/webhooks/retrieve.yml -------------------------------------------------------------------------------- /test/cassettes/webhooks/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyPost/easypost-php/HEAD/test/cassettes/webhooks/update.yml --------------------------------------------------------------------------------