Skip to content

Commit

Permalink
Merge pull request #11 from Sevendays-Digital/3.x
Browse files Browse the repository at this point in the history
3.x
  • Loading branch information
SevendaysCompany committed Sep 29, 2023
2 parents cb85dba + 7c08fcb commit 8b775f2
Show file tree
Hide file tree
Showing 19 changed files with 388 additions and 325 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `filament-page-builder` will be documented in this file.

## 3.0.0 Initial filament v3 update
- support Filamentphp v3 / Livewire v3
- disable validation for preview
- visual fixes for preview

Please note there is a bug, preventing you from saving blocks, in filament `Builder` in combination with the `filament/spatie-laravel-translatable-plugin`
https://github.com/filamentphp/filament/issues/8656

## 1.0.0 - 202X-XX-XX

- initial release
34 changes: 19 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,41 @@
{
"name": "haringsrob/filament-page-builder",
"name": "sevendays/filament-page-builder",
"description": "A visual page builder for Filament",
"keywords": [
"Sevendays",
"haringsrob",
"laravel",
"filamentphp",
"filament-page-builder"
],
"homepage": "https://github.com/haringsrob/filament-page-builder",
"homepage": "https://github.com/sevendays-digital/filament-page-builder",
"license": "MIT",
"authors": [
{
"name": "Harings Rob",
"email": "haringsrob@gmail.com",
"role": "Developer"
},
{
"name": "Michael Metdepenningen",
"email": "michael@sevendays.be",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^2.0",
"spatie/laravel-package-tools": "^1.13.5",
"filament/filament": "3.0-stable",
"filament/spatie-laravel-translatable-plugin": "^3.0-stable",
"illuminate/contracts": "^9.0|^10.0",
"filament/spatie-laravel-translatable-plugin": "^v2.17",
"wire-elements/modal": "^1.0"
"spatie/laravel-package-tools": "^1.13.5",
"wire-elements/modal": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-parallel": "^0.3",
"pestphp/pest": "^1.23",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
Expand All @@ -40,13 +44,13 @@
},
"autoload": {
"psr-4": {
"Haringsrob\\FilamentPageBuilder\\": "src",
"Haringsrob\\FilamentPageBuilder\\Database\\Factories\\": "database/factories"
"Sevendays\\FilamentPageBuilder\\": "src",
"Sevendays\\FilamentPageBuilder\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Haringsrob\\FilamentPageBuilder\\Tests\\": "tests"
"Sevendays\\FilamentPageBuilder\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -69,10 +73,10 @@
"extra": {
"laravel": {
"providers": [
"Haringsrob\\FilamentPageBuilder\\FilamentPageBuilderServiceProvider"
"Sevendays\\FilamentPageBuilder\\FilamentPageBuilderServiceProvider"
],
"aliases": {
"FilamentPageBuilder": "Haringsrob\\FilamentPageBuilder\\Facades\\FilamentPageBuilder"
"FilamentPageBuilder": "Sevendays\\FilamentPageBuilder\\Facades\\FilamentPageBuilder"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion config/filament-page-builder.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

// config for Haringsrob/FilamentPageBuilder
// config for Sevendays/FilamentPageBuilder
return [

];
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class extends Migration
{
public function up(): void
{
Schema::table('blocks', function (Blueprint $table) {
Expand Down
2 changes: 1 addition & 1 deletion resources/dist/filament-page-builder.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8b775f2

Please sign in to comment.