composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "padraic/humbug_get_contents",
  3. "description": "Secure wrapper for accessing HTTPS resources with file_get_contents for PHP 5.3+",
  4. "keywords": ["file_get_contents", "download", "ssl", "tls", "https", "http"],
  5. "homepage": "https://github.com/padraic/file_get_contents",
  6. "type": "library",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Pádraic Brady",
  11. "email": "padraic.brady@gmail.com",
  12. "homepage": "http://blog.astrumfutura.com"
  13. },
  14. {
  15. "name": "Théo Fidry",
  16. "email": "theo.fidry@gmail.com"
  17. }
  18. ],
  19. "require": {
  20. "php": "^5.3 || ^7.0 || ^7.1 || ^7.2",
  21. "ext-openssl": "*",
  22. "composer/ca-bundle": "^1.0"
  23. },
  24. "require-dev": {
  25. "bamarni/composer-bin-plugin": "^1.1",
  26. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5",
  27. "mikey179/vfsStream": "^1.6"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Humbug\\": "src/"
  32. },
  33. "files": [
  34. "src/function.php",
  35. "src/functions.php"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Humbug\\Test\\": "tests/Humbug/Test/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "bamarni-bin": {
  48. "bin-links": false
  49. },
  50. "branch-alias": {
  51. "dev-master": "2.0-dev"
  52. }
  53. }
  54. }