From 401fe15c18d55c6a2d6f55b66ac663288edd0213 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Mon, 4 Nov 2024 09:39:29 -0500 Subject: [PATCH] - Added a Picea extension --- composer.json | 12 ++++++++++++ meta/definitions.php | 9 +++++++++ src/Picea/DumpExtension.php | 15 +++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 meta/definitions.php create mode 100644 src/Picea/DumpExtension.php diff --git a/composer.json b/composer.json index 0e7e2bf..0e6c0be 100644 --- a/composer.json +++ b/composer.json @@ -13,5 +13,17 @@ "psr-4": { "Dump\\": "src/" } + }, + "extra": { + "lean": { + "autoload": { + "definitions" : [ + "meta/definitions/auth.php" + ], + "config": [ + "meta/config.php" + ] + } + } } } diff --git a/meta/definitions.php b/meta/definitions.php new file mode 100644 index 0000000..974d651 --- /dev/null +++ b/meta/definitions.php @@ -0,0 +1,9 @@ + autowire(DumpExtension::class), +]; \ No newline at end of file diff --git a/src/Picea/DumpExtension.php b/src/Picea/DumpExtension.php new file mode 100644 index 0000000..4c25261 --- /dev/null +++ b/src/Picea/DumpExtension.php @@ -0,0 +1,15 @@ +"; + } +}