-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 76c36c0
Showing
12 changed files
with
3,755 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
vendor | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<p align="center"> | ||
<a href="https://github.com/wire-extender/actions"><img src="https://github.com/wire-extender/workflows/PHPUnit/badge.svg" alt="Build Status"></a> | ||
<a href="https://packagist.org/packages/wire-extender"><img src="https://img.shields.io/packagist/dt/wire-extender" alt="Total Downloads"></a> | ||
<a href="https://packagist.org/packages/wire-extender"><img src="https://img.shields.io/packagist/v/wire-extender" alt="Latest Stable Version"></a> | ||
<a href="https://packagist.org/packages/wire-extender"><img src="https://img.shields.io/packagist/l/wire-extender" alt="License"></a> | ||
</p> | ||
|
||
## Embed Livewire Components Using Wire Extender | ||
Wire Extender allows you to embed any Livewire component on any website or even within a static html file. | ||
|
||
**Please be aware that Wire Extender is in development** | ||
|
||
## Documentation | ||
You can find the [full documentation on our site](https://wire-elements.dev/blog/embed-livewire-components-using-wire-extender). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "wire-elements/wire-extender", | ||
"description": "Embed your Livewire components anywhere.", | ||
"require": { | ||
"php": "^8.1", | ||
"livewire/livewire": "v3.4.7" | ||
}, | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"WireElements\\WireExtender\\": "src/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Philo Hermans", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"WireElements\\WireExtender\\WireExtenderServiceProvider" | ||
] | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
Oops, something went wrong.