soyhuce/livewire-component-auto-register 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

soyhuce/livewire-component-auto-register

最新稳定版本:0.3.0

Composer 安装命令:

composer require soyhuce/livewire-component-auto-register

包简介

Auto-register Livewire components outside base namespace

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status GitHub PHPStan Action Status Total Downloads

Auto-register Livewire components outside base namespace

Livewire only supports having one root namespace for your components. This package allows you to automatically register components outside the base namespace.

Installation

You can install the package via composer:

composer require soyhuce/livewire-component-auto-register

You can publish the config file with:

php artisan vendor:publish --tag="livewire-component-auto-register-config"

Usage

In the config/livewire-component-auto-register.php file, you can specify the namespaces you want to register components from.

    'paths' => [
        'Support\\Livewire' => base_path('app/Support/Livewire'),
    ],

From now, all components in the app/Support/Livewire namespace will be automatically registered and be usable in your views. For example, if you have a component app/Support/Livewire/ProgressBar.php, you can use it in your views like this:

<livewire:progress-bar />

Optimize discovery for production

Component discovery can be cached using the livewire-component-auto-register:cache command.

php artisan livewire-component-auto-register:cache

Cache can be cleared using the livewire-component-auto-register:clear command.

php artisan livewire-component-auto-register:clear

Commands are registered as optimization command inside Laravel, meaning that php artisan optimize and php artisan optimize:clear will automatically run them.

Generate IDE Helper file

Sometimes, your IDE may not be able to resolve the components correctly (particularly Laravel IDEA plugin). You can generate a helper file using the livewire-component-auto-register:ide-helper command.

php artisan livewire-component-auto-register:ide-helper

You can configure ide-helper file path in the configuration file.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 893
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-10