composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "composer/ca-bundle",
  3. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "cabundle",
  8. "cacert",
  9. "certificate",
  10. "ssl",
  11. "tls"
  12. ],
  13. "authors": [
  14. {
  15. "name": "Jordi Boggiano",
  16. "email": "j.boggiano@seld.be",
  17. "homepage": "http://seld.be"
  18. }
  19. ],
  20. "support": {
  21. "irc": "irc://irc.freenode.org/composer",
  22. "issues": "https://github.com/composer/ca-bundle/issues"
  23. },
  24. "require": {
  25. "ext-openssl": "*",
  26. "ext-pcre": "*",
  27. "php": "^5.3.2 || ^7.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^4.5",
  31. "psr/log": "^1.0",
  32. "symfony/process": "^2.5 || ^3.0"
  33. },
  34. "suggest": {
  35. "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Composer\\CaBundle\\": "src"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Composer\\CaBundle\\": "tests"
  45. }
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "1.x-dev"
  50. }
  51. },
  52. "config": {
  53. "platform": {
  54. "php": "5.3.9"
  55. }
  56. }
  57. }