gitextract_cqswz2st/ ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── modules-livewire.php ├── phpunit.xml ├── src/ │ ├── Commands/ │ │ ├── LivewireMakeCommand.php │ │ ├── LivewireMakeFormCommand.php │ │ ├── VoltMakeCommand.php │ │ └── stubs/ │ │ ├── livewire-mfc-class.stub │ │ ├── livewire-mfc-js.stub │ │ ├── livewire-mfc-test.stub │ │ ├── livewire-mfc-view.stub │ │ ├── livewire-sfc.stub │ │ ├── livewire.form.stub │ │ ├── livewire.inline.stub │ │ ├── livewire.stub │ │ ├── livewire.view.stub │ │ ├── volt-component-class.stub │ │ └── volt-component.stub │ ├── LaravelModulesLivewireServiceProvider.php │ ├── Providers/ │ │ └── LivewireComponentServiceProvider.php │ ├── Support/ │ │ ├── Decomposer.php │ │ └── ModuleVoltComponentRegistry.php │ ├── Traits/ │ │ ├── CommandHelper.php │ │ ├── LivewireComponentParser.php │ │ └── VoltComponentParser.php │ └── View/ │ └── ModuleVoltViewFactory.php └── tests/ ├── Feature/ │ ├── Commands/ │ │ ├── LivewireMakeCommandTest.php │ │ ├── LivewireMakeFormCommandTest.php │ │ └── VoltMakeCommandTest.php │ ├── ExampleTest.php │ ├── IntegrationTest.php │ ├── Livewire/ │ │ └── LivewireComponentRenderTest.php │ └── Volt/ │ └── VoltComponentRenderTest.php ├── TestCase.php ├── Traits/ │ └── InitModule.php └── Unit/ ├── ExampleTest.php ├── LaravelModulesLivewireServiceProviderTest.php ├── Providers/ │ └── LivewireComponentServiceProviderTest.php ├── Support/ │ ├── DecomposerTest.php │ └── ModuleVoltComponentRegistryTest.php ├── Traits/ │ └── CommandHelperTest.php └── View/ └── ModuleVoltViewFactoryTest.php