markenzoo / contao-isotope-paypal-express-bundle
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Type:contao-bundle
Requires
- php: ^7.2
- contao/core-bundle: ^4.9
- contao/faq-bundle: ^4.9
- isotope/isotope-core: ^2.6
- paypal/paypal-checkout-sdk: ^1.0.1
- symfony/framework-bundle: ^4.4
Requires (Dev)
- contao/manager-plugin: ^2.0
- friendsofphp/php-cs-fixer: ^2.0
- phpunit/phpunit: ^8.5
- psalm/plugin-phpunit: ^0.10
- psalm/plugin-symfony: ^1.0
- symfony/phpunit-bridge: ^4.4
- vimeo/psalm: ^3.9
Suggests
- markenzoo/contao-expo-push-notification-bundle: Markenzoo Expo Push Notification Bundle gives you the possibility to send custom push notifications for Expo (React Native) in Contao 4. / Die Markenzoo Erweiterung für Expo Push-Benachrichtigungen erlaubt es eigene Push-Benachrichtigungen für Expo (React Native) in Contao 4 zu versenden.
- markenzoo/contao-file-helper-bundle: Markenzoo File Helper extends the file manager to show where files are included and to edit these elements with one click. / Die Markenzoo File Helper Erweiterung erlaubt es in der Dateiverwaltung anzeigen zu lassen, wo Dateien eingebunden sind und diese Elemente mit einem Klick zu bearbeiten.
Conflicts
- contao/core: *
- contao/manager-plugin: <2.0 || >=3.0
This package is auto-updated.
Last update: 2025-03-29 00:47:54 UTC
README
Disclaimer
This is an experimental project. Use it at your own risk. We do not provide any warranty for failure or corruption in any circumstance.
Contributions in any form are welcome, simply submit a PR, it would be highly appreciated!
Features
Provide an integration for Smart Paypment Buttons from Paypal using the JavaScript SDK.
Notice Currently only digital goods with no shipping are supported.
Todo
- Shipping Address
- Billing Address
- Logging
- Shipping Fees
- Platform Fees
- Authorization Workflow
- Pass the Partner Attribution ID
Requirements
- PHP >=7.2
- Contao ~4.9 LTS
Install
Managed edition
When using the managed edition it's pretty simple to install the package. Just search for the package in the Contao Manager and install it. Alternatively you can use the CLI.
# Using the contao manager $ php contao-manager.phar.php composer require markenzoo/contao-isotope-paypal-express-bundle # Using composer directly $ php composer.phar require markenzoo/contao-isotope-paypal-express-bundle # Using global composer installation $ composer require markenzoo/contao-isotope-paypal-express-bundle
Symfony application
If you use Contao in a symfony application without contao/manager-bundle, you have to register the bundle manually:
class AppKernel { public function registerBundles() { $bundles = [ // ... new Markenzoo\ContaoIsotopePaypalExpressBundle\ContaoIsotopePaypalExpressBundle() ]; } }
Note to self
Run the PHP-CS-Fixer and the unit test before you release your bundle:
vendor/bin/php-cs-fixer fix -v vendor/bin/phpunit vendor/bin/psalm vendor/bin/psalter --issues=all --dry-run