Download the PHP package pitchprintinc/pitchprint without Composer

On this page you can find all versions of the php package pitchprintinc/pitchprint. 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 pitchprint

PitchPrint for Magento

This PichPrint plugin for Magento provides an interface between PitchPrint and Magento. It retrieves all your designs from your PitchPrint account for you to select and assign to a product. When opening the product on the frontend, it will have the selected design ready for customization. You can link your PitchPrint account to Magento, by providing your domain API key and Secret Key in the PitchPrint Plugin for Magento's settings page. The plugin also emits events when certain actions take place. These events send information to an endpoint that you can specify on the Webhooks page of PitchPrint https://admin.pitchprint.io/webhooks

The plugin allows you to do the following on Magento:

How to install PitchPrint on Magento: https://docs.pitchprint.com/article/113-magento-installation

Demo of PitchPrint on Magento: https://mg.demo.pitchprint.io/

Steps for Installation

  1. Extract extension package and upload the folder named PitchPrintInc into your_magento_root_dir/app/code/ directory.

    1. In shell run: php bin/magento setup:upgrade
    2. in Mysql run the following:

      CREATE TABLE magento.pitch_print_config ( -> id INT NOT NULL AUTO_INCREMENT, -> api_key TEXT NULL, -> secret_key TEXT NULL, -> PRIMARY KEY (id));

      CREATE TABLE magento.pitch_print_product_design ( -> product_id INT NOT NULL AUTO_INCREMENT, -> design_id TEXT NULL, -> PRIMARY KEY (product_id));

      CREATE TABLE magento.pitch_print_quote_item ( -> item_id INT NOT NULL AUTO_INCREMENT, -> project_data TEXT NULL, -> PRIMARY KEY (item_id));

    3. Then run: php bin/magento cache:clean
    4. Followed by: php bin/magento setup:static-content:deploy
    5. Then navigate to your Store's Backend / Admin, on the left-hand sidebar you will see the PitchPrint module.
    6. Next, let’s generate the PitchPrint keys. Navigate in a new window tab to https://admin.pitchprint.io/register and create an account or login here if you already have an account
    7. Then navigate to the domains page and add a new domain. Don’t worry you can still use it for localhost testing if you are not ready to go live yet. Provide your intended domain url, not a localhost. You should now have a pair of API and Secret Key. Back to your Magento Admin, you will copy and paste the API and Secret keys generated above into the PitchPrint configuration boxes and save. Now navigate to Catalog – > Products page and click “edit” on the right under action against any product in your admin. On the product details page, you will find PitchPrint in the menus at the bottom. Click it to assign one of your designs to the product. To create more designs, you need to go to the PitchPrint Designs page. Save.

All versions of pitchprint with dependencies

PHP Build Version
Package Version
Requires php Version ~7.1|~7.2|~7.3
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 pitchprintinc/pitchprint contains the following files

Loading the files please wait ....