forked from spatie/url-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 997 Bytes
/
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
{
"name": "spatie/url-signer",
"description": "Generate a url with an expiration date and signature to prevent unauthorized access",
"keywords": [
"spatie",
"security",
"encryption",
"sign",
"url"
],
"homepage": "https://github.com/spatie/url-signer",
"license": "MIT",
"authors": [
{
"name": "Sebastian De Deyne",
"email": "[email protected]",
"homepage": "https://github.com/sebastiandedeyne",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"league/url": "^3.3"
},
"require-dev": {
"phpspec/phpspec": "^2.2",
"henrikbjorn/phpspec-code-coverage": "^1.0"
},
"autoload": {
"psr-4": {
"Spatie\\UrlSigner\\": "src"
}
},
"scripts": {
"test": "phpspec run"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}