You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
867 B

3 years ago
  1. {
  2. "name": "fideloper/proxy",
  3. "description": "Set trusted proxies for Laravel",
  4. "keywords": ["proxy", "trusted proxy", "load balancing"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Chris Fidao",
  9. "email": "fideloper@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.4.0",
  14. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0"
  15. },
  16. "require-dev": {
  17. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  18. "mockery/mockery": "^1.0",
  19. "phpunit/phpunit": "^6.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Fideloper\\Proxy\\": "src/"
  24. }
  25. },
  26. "extra": {
  27. "laravel": {
  28. "providers": [
  29. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  30. ]
  31. }
  32. },
  33. "minimum-stability": "dev",
  34. "prefer-stable": true
  35. }