Download the PHP package edarkstore/shiphero without Composer

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

FAQ

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

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

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

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

Informations about the package shiphero

Shiphero Magento plugin

Manual Installation

In Magento 2:
  1. Agregar el modulo en el directorio app/code. Si la carpeta code/no existe, debe ser creada en el directorio app/.
  2. En la raíz del proyecto, correr el comando php bin/magento module:enable Edarkstore_Shiphero
  3. Para chequear que el modulo quedó habilitado, correr el comando php bin/magento module:status

    Documentación

    Observers

    El módulo utiliza dos observadores para notificar los cambios a nuestro WMS. Los observadores se utilizan para los productos y las órdenes:

    Products:

    Si un producto es modificado o eliminado desde el administrador de la tienda en Magento, nuestro WMS será notificado para actualizar los datos.
    Los observers utilizados son:

    • catalog_product_save_after
    • catalog_product_delete_after
      Orders

      Cuando se confirma un pedido en el sitio o se modifica desde el administrador de Magento, nuestro WMS será notificado de la actualización del pedido o del pedido recién creado. Los observers utilizados son:

    • admin_sales_order_address_update
    • sales_model_service_quote_submit_success
    • order_cancel_after
    • sales_order_invoice_save_after

En ambos casos (pedidos y productos) solo se crea una notificación en un sistema de colas, evitando que se vea afectado el rendimiento de la web por una espera en la respuesta de nuestro WMS.

API

Además de los observadores, el módulo crea 3 endpoints para realizar las actualizaciones de las órdenes.

Invoice (/V1/shiphero/order/:id/invoice)

Este endpoint recibe el ID del pedido y genera la factura directamente en Magento una vez confirmado el pago.

Shipment (/V1/shiphero/order/:id/ship)

Este endpoint recibe el ID del pedido y un JSON con información relacionada (tracking number, shipping method, carrier) y genera un shipment para la orden asociándole el warehouse eDarkstore.

Shipment (/V1/shiphero/order/:id/complete)

Este endpoint recibe el ID de la orden y marca la orden como completada.


All versions of shiphero with dependencies

PHP Build Version
Package Version
Requires php Version ^5.5|^5.6|^7|^8
magento/framework Version ^100|^101|^102
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package edarkstore/shiphero contains the following files

Loading the files please wait ....