This is a private Composer repository.
To use it, you have to add this repository to your composer.json
file.
Add this Composer repository to your project's composer.json
file, then you can require these private packages just like you would with
one from Packagist.
Run this command in the terminal in your project's root directory:
composer config repositories.octolize/plugins composer https://composer.octolize.dev
or add to composer.json
"repositories": [ { "type": "composer", "url": "https://composer.octolize.dev" } ]
Click on an individual package's release version to get a snippet of code for your project's dependencies.
Important: The key will authenticate successfully only if your Octolize account has an active subscription for the plug-in you’re about to install. If the subscription lapses, package downloads will fail with a 401 Unauthorized
error.
Run this command in your terminal (replace MASTER_API_KEY
with the value you copied):
composer config --global --auth bearer.composer.octolize.dev MASTER_API_KEY
composer config
updates Composer’s configuration files.--global
writes the credential to ~/.composer/auth.json
, so every project on your machine can use it.composer.json
.--auth
tells Composer you’re adding authentication data.bearer.composer.octolize.dev
is Octolize’s private package host; anything after bearer.
must match the domain serving the package.MASTER_API_KEY
becomes a bearer token that Composer will include in an Authorization: Bearer …
header whenever it fetches packages from https://composer.octolize.dev
.composer require octolize-plugin/flexible-shipping-pro
Behind the scenes, Composer:
composer.octolize.dev
.auth.json
, finds the token for that host, and sends it with the request.Print the shipping labels using the PrintNode service directly from your WooCommerce store.
Extends the free version of Flexible Shipping by adding custom locations for shipping rules.
Add the map of DPD, DHL and UPS Pickup Points to the shipping methods in your shop and let your customers choose the one they want to collect their order from.
WooCommerce UPS integration packed with many advanced features. Display the dynamically calculated live rates for UPS shipping methods and adjust them to your needs.
WooCommerce USPS integration packed with many advanced features. Display the dynamically calculated live rates for USPS shipping methods and adjust them to your needs.
This Composer repository is powered by Satis