pagewerx/uswerx-api-php

API Library Package for integrating with USWerx

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/pagewerx/uswerx-api-php

0.0.5 2025-03-24 21:15 UTC

This package is auto-updated.

Last update: 2025-12-26 20:31:03 UTC


README

Table of Contents

  • README - (This Page) Project overview and getting started guide
  • DraftOrder - Documentation for the DraftOrder class
  • Order - Documentation for the Order class

Install and Setup

  1. Require/Install the USWerx API Library for PHP using Composer:

    composer require pagewerx/uswerx-api-php
  2. Set Environment Variables

    Create a .env file (or use an existing one) and include the following necessary environment variables:

    USWX_API_TOKEN=<api-token>
    USWX_HOST=<host>
    
  3. Initialization:

    To begin using the library you will first need to initialize it with the location of the .env file and optionally a LoggerInterface object. This will load your environment variables, set your logger to what was provided, if left null the DefaultLogger will be used. It is recommended to use a better logger than the provided DefaultLogger class. You can create your own using it as a reference or simply create a wrapper for an existing logging library. This process will get an instance of the API Library's Context Singleton.

    UswerxApi::init(__DIR__ . '/path-to-your-env-file/.env');