Skip to content

Commit 66cafde

Browse files
authored
Laravel 11 support
1 parent 8754d69 commit 66cafde

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ storage/*.key
1212
Homestead.yaml
1313
Homestead.json
1414

15+
.idea
16+
1517
.phpunit.result.cache

composer.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,40 @@
11
{
2-
"name": "dreamonkey/laravel-cloudfront-url-signer",
2+
"name": "dcodegroup/laravel-attachments",
33
"description": "Laravel 5.6+ wrapper around CloudFront canned signed URLs",
44
"keywords": [
55
"dreamonkey",
66
"laravel-cloudfront-url-signer",
77
"private content",
88
"cloudfront"
99
],
10-
"homepage": "https://github.com/dreamonkey/laravel-cloudfront-url-signer",
1110
"license": "MIT",
1211
"authors": [
1312
{
1413
"name": "Paolo Caleffi",
1514
"email": "[email protected]",
1615
"homepage": "https://dreamonkey.com",
1716
"role": "Developer"
17+
},
18+
{
19+
"name": "Aaron Heath",
20+
"email": "[email protected]",
21+
"role": "Developer",
22+
"homepage": "https://aaronheath.com"
23+
},
24+
{
25+
"name": "Dcode Group",
26+
"email": "[email protected]",
27+
"homepage": "https://dcodegroup.com"
1828
}
1929
],
2030
"require": {
2131
"php": "^7.3.0|^8.0",
22-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
32+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
2333
"aws/aws-sdk-php": "^3.52"
2434
},
2535
"require-dev": {
26-
"orchestra/testbench": "^6.0|^8.0",
27-
"phpunit/phpunit": "^8.0|^9.0"
36+
"orchestra/testbench": "^6.0|^8.0|^9.0",
37+
"phpunit/phpunit": "^8.0|^9.0|^10.5"
2838
},
2939
"autoload": {
3040
"psr-4": {
@@ -49,4 +59,4 @@
4959
}
5060
}
5161
}
52-
}
62+
}

0 commit comments

Comments
 (0)