From 94d19b4e6f1395f2eb166386671dea1811e7fcc3 Mon Sep 17 00:00:00 2001 From: "John Paul E. Balandan, CPA" Date: Sat, 28 Dec 2024 21:39:39 +0800 Subject: [PATCH] Add composer.json --- composer.json | 1 + src/Nexus/Result/composer.json | 35 ++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/Nexus/Result/composer.json diff --git a/composer.json b/composer.json index 746f90c..3534d9f 100644 --- a/composer.json +++ b/composer.json @@ -36,6 +36,7 @@ "nexusphp/option": "self.version", "nexusphp/password": "self.version", "nexusphp/phpstan-nexus": "self.version", + "nexusphp/result": "self.version", "nexusphp/suppression": "self.version" }, "provide": { diff --git a/src/Nexus/Result/composer.json b/src/Nexus/Result/composer.json new file mode 100644 index 0000000..a6cb779 --- /dev/null +++ b/src/Nexus/Result/composer.json @@ -0,0 +1,35 @@ +{ + "name": "nexusphp/result", + "description": "The Nexus Result library.", + "license": "MIT", + "type": "library", + "keywords": [ + "nexus", + "result" + ], + "authors": [ + { + "name": "John Paul E. Balandan, CPA", + "email": "paulbalandan@gmail.com" + } + ], + "support": { + "issues": "https://github.com/NexusPHP/framework/issues", + "source": "https://github.com/NexusPHP/framework" + }, + "require": { + "php": "^8.3" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "psr-4": { + "Nexus\\Result\\": "" + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + } +}