sas/shopware-laravel-sdk is a Laravel package for shopware sdk for laravel 8.
It currently has 3 GitHub stars and 1.956 downloads on Packagist (latest version 2.0.0).
Install it with composer require sas/shopware-laravel-sdk.
Discover more Laravel packages by sas
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel package to help integrate Shopware PHP SDK much more easier
Install with Composer
composer require sas/shopware-laravel-sdk
Migrate shop table
php artisan migrate
Publish config file - Change /config/sas_app.php for your specific app's configuration
php artisan vendor:publish
<?php
/**
* config/sas_app.php
* These credentials need to match with the your predefined manifest.xml
*/
return [
"app_name" => env('SW_APP_NAME', 'MyApp'),
"app_secret" => env('SW_APP_SECRET', 'MyAppSecret'),
"registration_url" => env('SW_APP_REGISTRATION_URL', '/app-registration'),
"confirmation_url" => env('SW_APP_CONFIRMATION_URL', '/app-registration-confirmation'),
];
Your app is now ready to install by a Shopware application!
app_name is the name of the App)Please see CHANGELOG for more information on what has changed recently.
Feels free to create an issue on Github issues page or contact us directly at [email protected]
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
This SDK is mainly dedicated to Shopware 6.4 and onwards, earlier SW application may still be usable without test
The MIT License (MIT). Please see License File for more information.