12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "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": "sebastian@spatie.be",
- "homepage": "https://github.com/sebastiandedeyne",
- "role": "Developer"
- }
- ],
- "require": {
- "php": ">=5.6.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"
- }
- }
- }
|