Skip to content

Commit 4a19f37

Browse files
committed
initialize crypto package
1 parent 3eb91ec commit 4a19f37

5 files changed

Lines changed: 50 additions & 0 deletions

File tree

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"aether/cache": "self.version",
2828
"aether/clock": "self.version",
2929
"aether/config": "self.version",
30+
"aether/crypto": "self.version",
3031
"aether/database": "self.version",
3132
"aether/dependency-injection": "self.version",
3233
"aether/entity": "self.version",
@@ -52,6 +53,7 @@
5253
"Aether\\Cache\\": "packages/Cache/src/",
5354
"Aether\\Clock\\": "packages/Clock/src/",
5455
"Aether\\Config\\": "packages/Config/src/",
56+
"Aether\\Crypto\\": "packages/Crypto/src/",
5557
"Aether\\Database\\": "packages/Database/src/",
5658
"Aether\\DependencyInjection\\": "packages/DependencyInjection/src/",
5759
"Aether\\Entity\\": "packages/Entity/src/",
@@ -68,6 +70,7 @@
6870
"Aether\\Tests\\Cache\\": "packages/Cache/tests/",
6971
"Aether\\Tests\\Clock\\": "packages/Clock/tests/",
7072
"Aether\\Tests\\Config\\": "packages/Config/tests/",
73+
"Aether\\Tests\\Crypto\\": "packages/Crypto/tests/",
7174
"Aether\\Tests\\Database\\": "packages/Database/tests/",
7275
"Aether\\Tests\\DependencyInjection\\": "packages/DependencyInjection/tests/",
7376
"Aether\\Tests\\Entity\\": "packages/Entity/tests/",
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Close Pull Request
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: superbrothers/close-pull-request@v3
12+
with:
13+
comment: |
14+
Thanks for your Pull Request! We love contributions.
15+
16+
However, you should instead open your PR on the main repository:
17+
https://github.com/sxbrsky/aether
18+
19+
This repository is what we call a "subtree split": a read-only subset of that main repository.

packages/Crypto/LICENSE

Whitespace-only changes.

packages/Crypto/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Aether Crypto Component

packages/Crypto/composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "aether/crypto",
3+
"description": "The Aether crypto package.",
4+
"license": "MIT",
5+
"type": "library",
6+
"support": {
7+
"issues": "https://github.com/sxbrsky/aether/issues",
8+
"source": "https://github.com/sxbrsky/aether"
9+
},
10+
"require": {
11+
"php": "^8.2"
12+
},
13+
"minimum-stability": "dev",
14+
"autoload": {
15+
"psr-4": {
16+
"Aether\\Crypto\\": "src/"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Aether\\Tests\\Crypto\\": "tests/"
22+
}
23+
},
24+
"config": {
25+
"sort-packages": true
26+
}
27+
}

0 commit comments

Comments
 (0)