Skip to content

Commit 14ed158

Browse files
committed
Add composer.json
1 parent 96b58ed commit 14ed158

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"replace": {
3434
"nexusphp/clock": "self.version",
3535
"nexusphp/collection": "self.version",
36+
"nexusphp/encryption": "self.version",
3637
"nexusphp/option": "self.version",
3738
"nexusphp/password": "self.version",
3839
"nexusphp/phpstan-nexus": "self.version",

src/Nexus/Encryption/composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "nexusphp/encryption",
3+
"description": "The Nexus Encryption library.",
4+
"license": "MIT",
5+
"type": "library",
6+
"keywords": [
7+
"nexus",
8+
"encryption"
9+
],
10+
"authors": [
11+
{
12+
"name": "John Paul E. Balandan, CPA",
13+
"email": "paulbalandan@gmail.com"
14+
}
15+
],
16+
"support": {
17+
"issues": "https://github.com/NexusPHP/framework/issues",
18+
"source": "https://github.com/NexusPHP/framework"
19+
},
20+
"require": {
21+
"php": "^8.3",
22+
"ext-mbstring": "*",
23+
"ext-sodium": "*",
24+
"nexusphp/suppression": "^1.0"
25+
},
26+
"minimum-stability": "dev",
27+
"prefer-stable": true,
28+
"autoload": {
29+
"psr-4": {
30+
"Nexus\\Encryption\\": ""
31+
}
32+
},
33+
"config": {
34+
"optimize-autoloader": true,
35+
"preferred-install": "dist",
36+
"sort-packages": true
37+
}
38+
}

0 commit comments

Comments
 (0)