From 756c652a073613e2f8bf13c25b9ee2d9a7c2d961 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Thu, 6 May 2021 19:54:35 +0200 Subject: [PATCH] Composer : Activate the namespace --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6635497..71917f5 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "domframework", + "name": "dominiquefournier/domframework", "description": "DomFramework is a small PHP Framework. Database abstraction, authentication methods, routing, sessions are the keyword", "keywords": [ "filesystem", "filesystems", "files", "storage", "orm", "mail", @@ -14,5 +14,10 @@ ], "require": { "php": ">=7.0.0" + }, + "scripts" : { + "post-file-download": [ + "sed -i 's#//namespace Domframework#namespace Domframework#' *.php" + ] } }