Skip to content

Commit b64c14e

Browse files
committed
Initial commit
1 parent ab422e9 commit b64c14e

17 files changed

+3750
-8
lines changed

.editorconfig.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.gitattributes.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Path-based git attributes
2+
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+
# Ignore all test and documentation with "export-ignore".
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/tests export-ignore

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ vendor/
22
node_modules/
33
npm-debug.log
44

5-
# Laravel 4 specific
6-
bootstrap/compiled.php
7-
app/storage/
8-
95
# Laravel 5 & Lumen specific
106
public/storage
117
public/hot
@@ -15,6 +11,3 @@ storage/*.key
1511
.env
1612
Homestead.yaml
1713
Homestead.json
18-
19-
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
20-
.rocketeer/

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
All notable changes to `laravel-cloudfront-url-signer` will be documented in this file.
4+
5+
## 0.1.0 - 2018-02-08
6+
7+
- Pre-release

CONTRIBUTING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Contributing
2+
3+
Contributions are **welcome** and will be fully **credited**.
4+
5+
We accept contributions via Pull Requests on [Github](https://github.com/dreamonkey/laravel-cludfront-url-signer).
6+
7+
8+
## Pull Requests
9+
10+
- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
11+
12+
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
13+
14+
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
15+
16+
- **Create feature branches** - Don't ask us to pull from your master branch.
17+
18+
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
19+
20+
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
21+
22+
23+
**Happy coding**!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# laravel-cloudfront-url-signer
2-
Easy to use Laravel wrapper around the official AWS PHP SDK which allows to sign URLs to access Private Content through CloudFront CDN
2+
Easy to use Laravel 5.5+ wrapper around the official AWS PHP SDK which allows to sign URLs to access Private Content through CloudFront CDN

composer.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "dreamonkey/laravel-cloudfront-url-signer",
3+
"description": "Laravel 5.5+ wrapper around CloudFront canned signed URLs",
4+
"keywords": [
5+
"dreamonkey",
6+
"laravel-cloudfront-url-signer",
7+
"private content",
8+
"cloudfront"
9+
],
10+
"homepage": "https://github.com/dreamonkey/laravel-cloudfront-url-signer",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Paolo Caleffi",
15+
"email": "[email protected]",
16+
"homepage": "https://dreamonkey.com",
17+
"role": "Developer"
18+
}
19+
],
20+
"require": {
21+
"php" : "^7.0",
22+
"illuminate/support": "~5.4.0|~5.5.0",
23+
"illuminate/http": "~5.4.0|~5.5.0",
24+
"aws/aws-sdk-php": "^3.52",
25+
"league/uri": "^5.2"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit" : "6.3"
29+
},
30+
"autoload": {
31+
"psr-4": {
32+
"Dreamonkey\\CloudFrontUrlSigner\\": "src"
33+
}
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"Dreamonkey\\CloudFrontUrlSigner\\Test\\": "tests"
38+
}
39+
},
40+
"extra": {
41+
"laravel": {
42+
"providers": [
43+
"Dreamonkey\\CloudFrontUrlSigner\\CloudFrontUrlSignerServiceProvider"
44+
],
45+
"aliases": {
46+
"CloudFrontUrlSigner": "Dreamonkey\\CloudFrontUrlSigner\\Facades\\CloudFrontUrlSigner"
47+
}
48+
}
49+
}
50+
}

0 commit comments

Comments
 (0)