Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wallee-payment/shopware-6
Wallee integration for Shopware 6.5 and greater
https://github.com/wallee-payment/shopware-6
payment-integration php php7 php72 shopware-plugin shopware6 wallee
Last synced: 2 months ago
JSON representation
Wallee integration for Shopware 6.5 and greater
- Host: GitHub
- URL: https://github.com/wallee-payment/shopware-6
- Owner: wallee-payment
- License: apache-2.0
- Created: 2020-04-01T07:15:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T15:40:57.000Z (3 months ago)
- Last Synced: 2024-09-29T19:41:58.068Z (3 months ago)
- Topics: payment-integration, php, php7, php72, shopware-plugin, shopware6, wallee
- Language: PHP
- Homepage:
- Size: 1.54 MB
- Stars: 3
- Watchers: 8
- Forks: 4
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-shopware6 - Wallee >6.5
README
Wallee Payment for Shopware 6
=============================The Wallee Payment plugin wraps around the Wallee API. This library facilitates your interaction with various services such as transactions.
Please note that this plugin is for versions 6.5 and 6.6. For the 6.4 plugin please visit [our Shopware 6.4 plugin](https://github.com/wallee-payment/shopware-6-4).## Requirements
- Shopware 6.5.x or Shopware 6.6.x. See table below.
- PHP minimum version supported by the each shop version.## Supported versions
___________________________________________________________________________________
| Shopware 6 version | Plugin major version | Supported until |
|-------------------------------|------------------------|------------------------|
| Shopware 6.6.x | 6.x | Further notice |
| Shopware 6.5.x | 5.x | October 2024 |
-----------------------------------------------------------------------------------## Installation
You can use **Composer** or **install manually**
### Composer
The preferred method is via [composer](https://getcomposer.org). Follow the
[installation instructions](https://getcomposer.org/doc/00-intro.md) if you do not already have
composer installed.Once composer is installed, execute the following command in your project root to install this library:
```bash
composer require wallee/shopware-6
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache WalleePayment
```#### Update via composer
```bash
composer update wallee/shopware-6
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache WalleePayment
```### Manual Installation
Alternatively you can download the package in its entirety. The [Releases](../../releases) page lists all stable versions.
Uncompress the zip file you download, and include the autoloader in your project:
```bash
# unzip to ShopwareInstallDir/custom/plugins/WalleePayment
composer require wallee/sdk 4.6.0
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache WalleePayment
```## Usage
The library needs to be configured with your account's space id, user id, and application key which are available in your Wallee
account dashboard.### Logs and debugging
To view the logs please run the command below:
```bash
cd shopware/install/dir
tail -f var/log/wallee_payment*.log
```## Documentation
[Documentation](https://plugin-documentation.wallee.com/wallee-payment/shopware-6/6.1.8/docs/en/documentation.html)
## License
Please see the [license file](https://github.com/wallee-payment/shopware-6/blob/master/LICENSE.txt) for more information.