Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pfpayments/shopware-6-3
PostFinance Checkout integration for Shopware 6.2.3 - 6.3.*
https://github.com/pfpayments/shopware-6-3
Last synced: about 2 months ago
JSON representation
PostFinance Checkout integration for Shopware 6.2.3 - 6.3.*
- Host: GitHub
- URL: https://github.com/pfpayments/shopware-6-3
- Owner: pfpayments
- License: apache-2.0
- Created: 2021-05-31T14:52:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-07T17:56:28.000Z (over 3 years ago)
- Last Synced: 2024-04-18T23:05:27.550Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 773 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
PostFinanceCheckout Payment for Shopware 6.2.3 - 6.3.*
=============================The PostFinanceCheckout Payment plugin wraps around the PostFinanceCheckout API. This library facilitates your interaction with various services such as transactions.
## Requirements
- PHP 7.2 and above
- Shopware 6.2.3 and above## 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 postfinancecheckout/shopware-6-3
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache PostFinanceCheckoutPayment
```#### Update via composer
```bash
composer update postfinancecheckout/shopware-6-3
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache PostFinanceCheckoutPayment
```### 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/PostFinanceCheckoutPayment
composer require postfinancecheckout/sdk 3.0.1
php bin/console plugin:refresh
php bin/console plugin:install --activate --clearCache PostFinanceCheckoutPayment
```## Usage
The library needs to be configured with your account's space id, user id, and application key which are available in your PostFinanceCheckout
account dashboard.### Logs and debugging
To view the logs please run the command below:
```bash
cd shopware/install/dir
tail -f var/log/postfinancecheckout_payment*.log
```## Documentation
[Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/shopware-6-3/3.1.7/docs/en/documentation.html)
## License
Please see the [license file](https://github.com/pfpayments/shopware-6-3/blob/master/LICENSE.txt) for more information.