The Website of Steve, mainly sharing SRE, DEVOPS, DEVSECOPS, PHP, Java, Python, Go, cross-border e-commerce, security, reading and other technical articles
How to add your own package into Bagisto ecommerce
Posted onEdited onInTechnology
,
LaravelWord count in article: 4.1kReading time ≈4 mins.
How to add your own package into Bagisto ecommerce
Bagisto is an Open source Laravel eCommerce platform for building marketplaces, mobile apps, blockchain, and headless commerce. She is from beautiful Indian, Use Laravel 10 for build.
This is the Bagisto main packages directory tree info.
Manual Setup of Files
if you perfer to set up your package manually,follow these steps assuming you are familiar with package directory structures and workflows. We’ll use the default package folder in Bagisto as an example
Create Package Directory
1、Inside the packages/Webkul folder,create a folder withd your package name. 2、In your package folder, create a folder named as src. This is where you will put all your package-related files. Your updated structure will look like this:
1、In the src folder, creat a folder named as Providers. Inside that folder, create a file named as OneBuyServiceProvider.php. Your structure should look like this:
use Illuminate\Pagination\Paginator; use Illuminate\Routing\Router; use Illuminate\Support\Facades\Blade; use Illuminate\Support\Facades\Route; use Illuminate\Support\ServiceProvider; use Webkul\Shop\Http\Middleware\AuthenticateCustomer; use Webkul\Shop\Http\Middleware\Currency; use Webkul\Shop\Http\Middleware\Locale; use Webkul\Shop\Http\Middleware\Theme;
class OneBuyServiceProvider extends ServiceProvider { /** * Bootstrap services. * * @return void */ public function boot(Router $router) { include __DIR__ . '/../Http/routes.php';
1、Add your package’s namespace to the psr-4 section in the composer.json file located in the root directory of your Bagisto application. Update it as follows:
2、Register your package’s service provider in the config/app.php file located in the root directory of your Bagisto application. Add the following line to the providers array:
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
return [ // Other configuration options
'providers' => ServiceProvider::defaultProviders()->merge([ // Other service providers Nicelizhi\OneBuy\Providers\OneBuyServiceProvider::class, ])->toArray(), // Other configuration options ];
3、Run the following command to autoload your package: