Skip to content

Commit c649e3c

Browse files
nullthoughtsIlCallo
authored andcommitted
Support for L5.7
Enabled support for L5.7 Dropped support for L5.5 Fixed some typo in README Removed useless PHPUnit configuration setting (https://stackoverflow.com/questions/44328114/phpunit-what-does-syntaxcheck-configuration-parameter-stands-for-exactly?rq=1)
1 parent 6725b23 commit c649e3c

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Create CloudFront signed URLs in Laravel 5.5+
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
1+
# Create CloudFront signed URLs in Laravel 5.6+
2+
Easy to use Laravel 5.6+ wrapper around the official AWS PHP SDK which allows to sign URLs to access Private Content through CloudFront CDN
33

44
Inspired by [laravel-url-signer](https://github.com/spatie/laravel-url-signer)
55

@@ -56,16 +56,11 @@ return [
5656
*/
5757
'key_pair_id' => env('CLOUDFRONT_KEY_PAIR_ID', ''),
5858

59-
/*
60-
* AWS region to connect to.
61-
*/
62-
'region' => env('AWS_DEFAULT_REGION', 'us-west-2'),
63-
6459
/*
6560
* CloudFront API version, by default it uses the latest available.
6661
*/
6762
'version' => env('CLOUDFRONT_API_VERSION', 'latest'),
68-
63+
6964
];
7065
```
7166
## Usage
@@ -114,4 +109,4 @@ If you discover any security related issues, please email [email protected]
114109

115110
## License
116111

117-
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
112+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
}
1919
],
2020
"require": {
21-
"php" : "^7.1",
22-
"illuminate/support": "~5.5.0|~5.6.0",
21+
"php" : "^7.1.3",
22+
"illuminate/support": "~5.6.0|~5.7.0",
2323
"aws/aws-sdk-php": "^3.52"
2424
},
2525
"require-dev": {

config/cloudfront-url-signer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
*/
2323
'version' => env('CLOUDFRONT_API_VERSION', 'latest'),
2424

25-
];
25+
];

phpunit.xml.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
10-
stopOnFailure="false"
11-
syntaxCheck="false">
10+
stopOnFailure="false">
1211
<testsuites>
1312
<testsuite name="Package Test Suite">
1413
<directory>./tests/</directory>

0 commit comments

Comments
 (0)