composer.json 997 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "spatie/url-signer",
  3. "description": "Generate a url with an expiration date and signature to prevent unauthorized access",
  4. "keywords": [
  5. "spatie",
  6. "security",
  7. "encryption",
  8. "sign",
  9. "url"
  10. ],
  11. "homepage": "https://github.com/spatie/url-signer",
  12. "license": "MIT",
  13. "authors": [
  14. {
  15. "name": "Sebastian De Deyne",
  16. "email": "sebastian@spatie.be",
  17. "homepage": "https://github.com/sebastiandedeyne",
  18. "role": "Developer"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.6.0",
  23. "league/url": "^3.3"
  24. },
  25. "require-dev": {
  26. "phpspec/phpspec": "^2.2",
  27. "henrikbjorn/phpspec-code-coverage": "^1.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Spatie\\UrlSigner\\": "src"
  32. }
  33. },
  34. "scripts": {
  35. "test": "phpspec run"
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.0-dev"
  40. }
  41. }
  42. }