Skip to content

Commit 298607a

Browse files
committed
initial setup
0 parents  commit 298607a

File tree

5 files changed

+983
-0
lines changed

5 files changed

+983
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/
2+
vendor/
3+
.env

composer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "nick/php_streams",
3+
"description": "Uploading files in php using stream requests",
4+
"type": "project",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Nick\\PhpStreams\\": "src/"
9+
}
10+
},
11+
"authors": [
12+
{
13+
"name": "Nickbahson",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"require": {
18+
"aws/aws-sdk-php": "^3.258"
19+
}
20+
}

0 commit comments

Comments
 (0)