-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
59 lines (58 loc) · 1.44 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "linkeys/signed-url",
"description": "Enhanced signed URLs for Laravel, including attaching data, click limits and expiry.",
"keywords": [
"signed",
"url",
"laravel",
"expire",
"single use",
"link",
"linkeys"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Toby Twigger",
"email": "tobytwigger@hotmail.co.uk"
}
],
"require": {
"php": "^8.0",
"ramsey/uuid": "^4.0",
"laravel/framework": "^9.0|^10.0",
"nesbot/carbon": "^2.17",
"spatie/url": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^7.0|^8.0",
"laravel/legacy-factories": "^1.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Linkeys\\UrlSigner\\": "src/",
"Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Linkeys\\UrlSigner\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Linkeys\\UrlSigner\\Providers\\UrlSignerServiceProvider"
],
"aliases": {
"UrlSigner": "Linkeys\\UrlSigner\\Facade\\UrlSigner"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always --process-isolation --verbose --configuration phpunit.xml"
}
}