Skip to content

Commit

Permalink
Merge pull request #7 from secondnetwork/Livewire-V3-Update
Browse files Browse the repository at this point in the history
feat: add Livewire v3
  • Loading branch information
secondnetwork authored Sep 24, 2023
2 parents 608a281 + bbda2df commit d2b0f29
Show file tree
Hide file tree
Showing 315 changed files with 8,216 additions and 47,623 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
![Kompass](https://github.com/secondnetwork/kompass/blob/main/public/assets/kompass_md.png?raw=true)

[![Latest Kompass Version](https://img.shields.io/packagist/v/secondnetwork/kompass.svg?style=for-the-badge&label=Kompass&labelColor=FFA700&color=1A2A2C)](https://github.com/secondnetwork/kompass)
[![Laravel](https://img.shields.io/badge/v9.51-999999?style=for-the-badge&label=Laravel&labelColor=eb4432&color=1A2A2C)](https://github.com/secondnetwork/kompass)
[![Laravel](https://img.shields.io/badge/v10.X-999999?style=for-the-badge&label=Laravel&labelColor=eb4432&color=1A2A2C)](https://laravel.com)
[![PHP 8.1](https://img.shields.io/badge/v8.2-999999?style=for-the-badge&label=PHP&labelColor=777BB4&color=1A2A2C)](https://php.com)
[![License](https://img.shields.io/github/license/secondnetwork/kompass?style=for-the-badge)](https://github.com/secondnetwork/kompass)

## The development of Kompass

This is an open source of Content Management System developed with [Laravel](http://laravel.com/) framework.
Expand All @@ -20,12 +21,11 @@ But built with the power of Tailwind, Alpine.js, Laravel and Livewire.
## Requirements

Additionally Kompass requires you to use
- PHP 8.1 or newer
- Laravel 9.51 or newer
- PHP 8.2 or newer
- Laravel 10.0 or newer
- Laravel Fortify 1.16 or newer
- Livewire 2.10 or newer
- Alpine.js 3.0 or newer
- Tailwindcss 3.0 or newer
- Livewire 3.0 or newer
- Tailwindcss 3.4 or newer

## Installation

Expand Down Expand Up @@ -62,6 +62,4 @@ If you discover any security related issues, please email <github@secondnetwork.

## License

The Kompass CMS is open-sourced software licensed under the [MIT](LICENSE.md).


The Kompass CMS is open-sourced software licensed under the [MIT](LICENSE.md).
29 changes: 14 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,22 @@
}
],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5.1",
"illuminate/support": "^9.52.4|^10",
"php": "^8.2",
"blade-ui-kit/blade-icons": "^1.5.2",
"illuminate/support": "^10.21",
"intervention/image": "^2.7.2",
"laravel/fortify": "^1.16.0",
"livewire/livewire": "^2.12.3",
"secondnetwork/blade-tabler-icons": "^2.15",
"symfony/http-client": "^6.2.7",
"symfony/mailgun-mailer": "^6.2.7"
"laravel/fortify": "^1.17.5",
"livewire/livewire": "^3.0.1",
"secondnetwork/blade-tabler-icons": "^2.32",
"symfony/http-client": "^6.3.2",
"symfony/mailgun-mailer": "^6.3.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.21.0",
"laravel/pint": "^0.2.4 || ^1.0.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.6.5 || ^10.0.0",
"spatie/laravel-ignition": "^1.6.4 || ^2.0.0"
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.12.0",
"mockery/mockery": "^1.6.6",
"phpunit/phpunit": "^10.3.2",
"spatie/laravel-ignition": "^2.3.0"
},
"autoload": {
"psr-4": {
Expand All @@ -61,7 +60,7 @@
},
"platform-check": false
},
"minimum-stability": "stable",
"minimum-stability": "beta",
"extra": {
"laravel": {
"providers": [
Expand Down
14 changes: 8 additions & 6 deletions config/kompass.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

return [

'sets' => [
'default' => [
'fallback' => 'border-all',
],
],

/*
|--------------------------------------------------------------------------
| Kompass Route Middleware
Expand Down Expand Up @@ -122,11 +128,6 @@

'hidden_files' => false,

'components' => [
// Rich Text
'quill' => Components\RichText\Quill::class,
],

'livewire' => [
'menu' => Livewire\Frontend\Menu::class,
'pageview' => Livewire\Frontend\Pageview::class,
Expand All @@ -145,7 +146,8 @@
'account' => Livewire\AccountForm::class,
'roles' => Livewire\Roles::class,
'eventdata' => Livewire\Eventdata::class,

'editorjs' => Livewire\EditorJS::class,
'redirect' => Livewire\Redirection::class,
],

'prefix' => '',
Expand Down
Loading

0 comments on commit d2b0f29

Please sign in to comment.