Download the PHP package torq/shopwarecommon without Composer

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

shopware-common

This repository (plugin) provides a centralized location for commonly reused code across multiple Torq Shopware projects, ensuring a single point of truth for shared functionality and enabling easier maintenance.


Adding a Submodule to an existing repository

Run the following command to create the shopwarecommon submodule in an existing Torq Showpare repo, then perform the steps in Submodule Installation.

git submodule add -f https://github.com/TorqIT/shopware-common src/custom/plugins/TorqShopwareCommon

Updating Submodule

After cloning your Git repository for the first time, pull down the submodule code by executing the following commands.

Note: This ensures the submodule is initialized and its content is fetched.


Submodule Installation

To install the submodule and set up the container, follow these steps:

  1. Build and start the container:

  2. Access the container: Connect to the container as the www-data user by running:

  3. Install the shopwarecommon plugin: Inside the container, add the shopwarecommon plugin to your Shopware project using Composer:

Note: The composer require command will add the shopwarecommon plugin as a dependency and update the composer.json and composer.lock files accordingly. It will also add the necessary files and folders to the vendor directory.

Encryption

Presently we're using the defuse/php-encryption library for handling encryption, and our wrapper class is TorqShopwareCommon/src/Security/Encryption/EncryptionHandler.php.

In order to use this plugin successfully your project will need to have an environment variable called TORQ_SHOPWARE_COMMON_ENCRYPTION_SECRET. The value of this can be generated using the included key generation tool available inside of all PHP containers at vendor/bin/generate-defuse-key.

YOU MUST FOLLOW THESE RULES WHEN MANAGING KEYS:

  1. NEVER PUT THE ENCRYPTION KEY DIRECTLY INSIDE THE CONFIG FILE

  2. NEVER COMMIT AN ENCRYPTION KEY TO A REPOSITORY

  3. NEVER USE THE SAME ENCRYPTION KEY IN DEV, TEST or PROD ENVIRONMENTS.

All versions of shopwarecommon with dependencies

PHP Build Version
Package Version
Requires shopware/core Version ~6.6.0
defuse/php-encryption Version ^2.3
symfony/http-kernel Version ~7.1.1
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 torq/shopwarecommon contains the following files

Loading the files please wait ....