From 1c1eae0ea33d3ec176eac947bad7b78f2c990984 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sat, 21 Mar 2026 09:45:26 -0400 Subject: [PATCH] decouple from potter/template --- composer.json | 3 +-- src/Potter/Cloneable/CloneableInterface.php | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 1904fc5..10477f8 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,6 @@ }, "minimum-stability": "stable", "require": { - "php": "^8.3", - "potter/template": "^1.0" + "php": "^8.3" } } diff --git a/src/Potter/Cloneable/CloneableInterface.php b/src/Potter/Cloneable/CloneableInterface.php index 6682d2a..ef2fe5c 100644 --- a/src/Potter/Cloneable/CloneableInterface.php +++ b/src/Potter/Cloneable/CloneableInterface.php @@ -4,9 +4,7 @@ declare(strict_types=1); namespace Potter\Cloneable; -use \Potter\Template\TemplateInterface; - -interface CloneableInterface extends TemplateInterface +interface CloneableInterface { public function clone(): static; public function __clone(): void;