Skip to content

Commit 3eb91ec

Browse files
committed
initialize foundation package
1 parent 0eb66d0 commit 3eb91ec

5 files changed

Lines changed: 69 additions & 0 deletions

File tree

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"aether/entity": "self.version",
3333
"aether/events": "self.version",
3434
"aether/filesystem": "self.version",
35+
"aether/foundation": "self.version",
3536
"aether/http": "self.version",
3637
"aether/routing": "self.version",
3738
"aether/support": "self.version"
@@ -56,6 +57,7 @@
5657
"Aether\\Entity\\": "packages/Entity/src/",
5758
"Aether\\Events\\": "packages/Events/src/",
5859
"Aether\\Filesystem\\": "packages/Filesystem/src/",
60+
"Aether\\Foundation\\": "packages/Foundation/src/",
5961
"Aether\\Http\\": "packages/Http/src/",
6062
"Aether\\Routing\\": "packages/Routing/src/",
6163
"Aether\\Support\\": "packages/Support/src/"
@@ -71,6 +73,7 @@
7173
"Aether\\Tests\\Entity\\": "packages/Entity/tests/",
7274
"Aether\\Tests\\Events\\": "packages/Events/tests/",
7375
"Aether\\Tests\\Filesystem\\": "packages/Filesystem/tests/",
76+
"Aether\\Tests\\Foundation\\": "packages/Foundation/tests/",
7477
"Aether\\Tests\\Http\\": "packages/Http/tests/",
7578
"Aether\\Tests\\Routing\\": "packages/Routing/tests/",
7679
"Aether\\Tests\\Support\\": "packages/Support/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/Foundation/LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2024 Dominik Szamburski
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

packages/Foundation/README.md

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

packages/Foundation/composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "aether/foundation",
3+
"description": "The Aether foundation 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\\Foundation\\": "src/"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Aether\\Tests\\Foundation\\": "tests/"
22+
}
23+
},
24+
"config": {
25+
"sort-packages": true
26+
}
27+
}

0 commit comments

Comments
 (0)