composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.8.35 || ^5.7 || ^6.5",
  31. "psr/log": "^1.0",
  32. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Composer\\CaBundle\\": "src"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "tests"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.x-dev"
  47. }
  48. },
  49. "config": {
  50. "platform": {
  51. "php": "5.3.9"
  52. }
  53. }
  54. }