Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
frostealth committed Apr 30, 2015
0 parents commit 85b2941
Show file tree
Hide file tree
Showing 5 changed files with 899 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
thumbs.db
*.class
*.pyc
*.pyo
*.swp
.project
.settings
.idea
composer.phar
vendor/*
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "frostealth/yii2-aws-s3",
"description": "Yii2 AWS S3 component",
"keywords": ["s3", "yii2", "aws-s3"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ivan Kudinov",
"email": "[email protected]"
},
{
"name": "Constantin Chuprik",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"frostealth\\yii2\\components\\s3\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"aws/aws-sdk-php": "2.7.*",
"yiisoft/yii2": "2.*"
}
}
Loading

0 comments on commit 85b2941

Please sign in to comment.