Skip to content

Commit ca8b024

Browse files
committed
Initial commit
0 parents  commit ca8b024

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Intellij
2+
/.idea/
3+
4+
# VS Code
5+
/.vscode/
6+
7+
# Composer
8+
/vendor/

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "elementaryframework/streams",
3+
"description": "Shared project for streams operations across the framework",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Nana Axel",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": "^7.1.10"
14+
},
15+
"keywords": [
16+
"event",
17+
"emitter",
18+
"async"
19+
],
20+
"autoload": {
21+
"psr-4": {
22+
"ElementaryFramework\\Core\\Streams\\": "src/Core/Streams/"
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)