From 9dc2048ff7a5e863df09715edee6fe83a4f52955 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Mon, 29 Dec 2025 12:04:09 -0600 Subject: [PATCH] Add livewire --- .gitignore | 4 +++ .idea/vcs.xml | 6 ++++ src/composer.json | 3 +- src/composer.lock | 78 ++++++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 384033a..7c9ec15 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,7 @@ src/Homestead.yaml src/Thumbs.db mysql/* !mysql/.gitkeep +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries +.idea/caches diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/composer.json b/src/composer.json index 44c6054..07415e0 100644 --- a/src/composer.json +++ b/src/composer.json @@ -8,7 +8,8 @@ "require": { "php": "^8.2", "laravel/framework": "^12.0", - "laravel/tinker": "^2.10.1" + "laravel/tinker": "^2.10.1", + "livewire/livewire": "^3.7" }, "require-dev": { "fakerphp/faker": "^1.23", diff --git a/src/composer.lock b/src/composer.lock index 1bc6a03..1319dbe 100644 --- a/src/composer.lock +++ b/src/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c514d8f7b9fc5970bdd94287905ef584", + "content-hash": "425868a474d745d21e77f45693146088", "packages": [ { "name": "brick/math", @@ -2019,6 +2019,82 @@ ], "time": "2025-12-07T16:03:21+00:00" }, + { + "name": "livewire/livewire", + "version": "v3.7.3", + "source": { + "type": "git", + "url": "https://github.com/livewire/livewire.git", + "reference": "a5384df9fbd3eaf02e053bc49aabc8ace293fc1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/livewire/zipball/a5384df9fbd3eaf02e053bc49aabc8ace293fc1c", + "reference": "a5384df9fbd3eaf02e053bc49aabc8ace293fc1c", + "shasum": "" + }, + "require": { + "illuminate/database": "^10.0|^11.0|^12.0", + "illuminate/routing": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/validation": "^10.0|^11.0|^12.0", + "laravel/prompts": "^0.1.24|^0.2|^0.3", + "league/mime-type-detection": "^1.9", + "php": "^8.1", + "symfony/console": "^6.0|^7.0", + "symfony/http-kernel": "^6.2|^7.0" + }, + "require-dev": { + "calebporzio/sushi": "^2.1", + "laravel/framework": "^10.15.0|^11.0|^12.0", + "mockery/mockery": "^1.3.1", + "orchestra/testbench": "^8.21.0|^9.0|^10.0", + "orchestra/testbench-dusk": "^8.24|^9.1|^10.0", + "phpunit/phpunit": "^10.4|^11.5", + "psy/psysh": "^0.11.22|^0.12" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Livewire": "Livewire\\Livewire" + }, + "providers": [ + "Livewire\\LivewireServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Livewire\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Caleb Porzio", + "email": "calebporzio@gmail.com" + } + ], + "description": "A front-end framework for Laravel.", + "support": { + "issues": "https://github.com/livewire/livewire/issues", + "source": "https://github.com/livewire/livewire/tree/v3.7.3" + }, + "funding": [ + { + "url": "https://github.com/livewire", + "type": "github" + } + ], + "time": "2025-12-19T02:00:29+00:00" + }, { "name": "monolog/monolog", "version": "3.9.0",