We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit ca8b024Copy full SHA for ca8b024
.gitignore
@@ -0,0 +1,8 @@
1
+# Intellij
2
+/.idea/
3
+
4
+# VS Code
5
+/.vscode/
6
7
+# Composer
8
+/vendor/
composer.json
@@ -0,0 +1,25 @@
+{
+ "name": "elementaryframework/streams",
+ "description": "Shared project for streams operations across the framework",
+ "type": "library",
+ "license": "MIT",
+ "authors": [
+ {
+ "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