PHP code example of nyoncode / laravel-package-toolkit

1. Go to this page and download the library: Download nyoncode/laravel-package-toolkit library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nyoncode / laravel-package-toolkit example snippets


use NyonCode\LaravelPackageToolkit\PackageServiceProvider;
use NyonCode\LaravelPackageToolkit\Packager;
use NyonCode\LaravelPackageToolkit\Contracts\Packable;

class MyAwesomePackageServiceProvider extends PackageServiceProvider implements
    Packable
{
    public function configure(Packager $packager): void
    {
        $packager
            ->name('My Awesome Package')
            ->hasConfig()
            ->hasRoutes()
            ->hasMigrations()
            ->hasTranslations()
            ->hasViews();
    }
}

use NyonCode\LaravelPackageToolkit\PackageServiceProvider;
use NyonCode\LaravelPackageToolkit\Packager;
use NyonCode\LaravelPackageToolkit\Contracts\Packable;

class AdvancedPackageServiceProvider extends PackageServiceProvider implements
    Packable
{
    public function configure(Packager $packager): void
    {
        $packager
            ->name('Advanced package')
            ->hasShortName('adv-pkg')
            ->hasConfig('custom-config.php')
            ->hasRoutes(['api.php', 'web.php'])
            ->hasMigrations('custom-migrations')
            ->hasTranslations('lang')
            ->hasViews('custom-views')
            ->hasComponents([
                'data-table' => DataTable::class,
                'modal' => Modal::class,
            ]);
    }

    public function registeringPackage(): void
    {
        // Custom logic before package registration
    }

    public function bootingPackage(): void
    {
        // Custom logic before package boot
    }
}

use NyonCode\LaravelPackageToolkit\PackageServiceProvider;
use NyonCode\LaravelPackageToolkit\Packager;
use NyonCode\LaravelPackageToolkit\Contracts\Packable;

class ConditionalPackageServiceProvider extends PackageServiceProvider implements
    Packable
{
    public function configure(Packager $packager): void
    {
        $packager
            ->name('Conditional package')
            ->hasRoutes(['api.php', 'web.php'])
            ->hasMigrations('custom-migrations')
            ->hasTranslations('lang')
            ->hasViews('custom-views')
            ->when($this->isInLocal(), function ($packager) {
                $packager->hasConfig('local-config.php')
                $packager->hasCommands();
            })->when($this->isInProduction(), function ($packager) {
                $packager->hasConfig('production-config.php')
                $packager–>hasRoutes('web.php');
            });
    }
}

$packager->name('Package name');

$packager->hasShortName('custom-short-name');

$packager->hasConfig();

$packager->hasConfig(['config.php', 'other-config.php']);

$packager->hasConfig([
    '../www/config/config.php',
    '../api/config/other-config.php',
]);

$package->hasConfig(directory: 'customConfig');

$packager->hasRoutes();

$packager->hasRoutes(['api.php', 'web.php']);

$packager->hasRoute(['../www/routes/web.php', '../api/routes/api.php']);

$package->hasRoute(['web.php'], 'webRouter');

$packager->hasMigrations();

$packager->hasMigrations('custom-migrations');

$packager->hasMigrations([
    '../www/database/migrations/2023_01_01_000000_create_users_table.php',
    '../api/database/migrations/2023_01_01_000001_create_roles_table.php',
]);

$package->hasMigrations(
    ['2023_01_01_000000_create_users_table.php'],
    'userMigrations'
);

$packager->canLoadMigrations();

$packager->hasTranslations();

$packager->hasTranslations('../custom-lang-directory');

$packager->hasCommands();

$packager->hasCommands(directory: 'custom-commands');

$packager->hasCommand('\Vendor\Package\Commands\CustomCommand::class');

$packager->hasCommands([
    '\Vendor\Package\Commands\CustomCommand::class',
    '\Vendor\Package\Commands\OtherCommand::class',
]);

$packager->hasViews();

$packager->hasViews('custom-views');

$packager->hasComponents(
    prefix: 'nyon',
    components: [
        'data-table' => DataTable::class,
        'modal' => Modal::class,
        Sidebar::class,
    ]
);

$packager->hasComponent('nyon', Alert::class, 'custom-alert');

$packager->hasComponentNamespaces(
    namespaces: [
        'nyon' => 'App\View\Components\Alert',
        'admin' => 'App\View\Components\Modal',
    ]
);

$packager->hasComponentNamespace('nyon', 'App\View\Components\Alert');

$packager
    ->hasViewComposer(
        views: 'nyon',
        composers: fn($view) => $view->with('test', 'test-value')
    )->hasViewComposer(
        views: ['viewName', 'anotherViewName'],
        composers: MyViewComposer::class
    )
);

$packager->hasSharedDataForAllViews(['key', 'value']);

$packager->hasAssets();

$packager->hasAssets('../dist');

$packager->hasProvider('../stubs/MyProvider.stub');

$packager->hasProvider('../stubs/MyProvider.stub')
    ->hasProvider('../stubs/MyOtherProvider.stub');

$packager->hasAbout();

$packager->hasVersion('1.0.0');

public function aboutData(): array
{
    return [
        'Repository' => 'https://github.com/your/package',
        'Author' => 'Your Name',
    ];
}
bash
php artisan vendor:publish