composer.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "composer/composer",
  3. "type": "library",
  4. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  5. "keywords": [
  6. "package",
  7. "dependency",
  8. "autoload"
  9. ],
  10. "homepage": "https://getcomposer.org/",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Nils Adermann",
  15. "email": "naderman@naderman.de",
  16. "homepage": "http://www.naderman.de"
  17. },
  18. {
  19. "name": "Jordi Boggiano",
  20. "email": "j.boggiano@seld.be",
  21. "homepage": "http://seld.be"
  22. }
  23. ],
  24. "require": {
  25. "php": "^5.3.2 || ^7.0",
  26. "composer/ca-bundle": "^1.0",
  27. "composer/semver": "^1.0",
  28. "composer/spdx-licenses": "^1.2",
  29. "composer/xdebug-handler": "^1.1",
  30. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  31. "psr/log": "^1.0",
  32. "seld/jsonlint": "^1.4",
  33. "seld/phar-utils": "^1.0",
  34. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  35. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  36. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  37. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  38. },
  39. "conflict": {
  40. "symfony/console": "2.8.38",
  41. "symfony/phpunit-bridge": "3.4.40"
  42. },
  43. "require-dev": {
  44. "symfony/phpunit-bridge": "^3.4",
  45. "phpspec/prophecy": "^1.10"
  46. },
  47. "suggest": {
  48. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  49. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  50. "ext-zlib": "Allow gzip compression of HTTP requests"
  51. },
  52. "config": {
  53. "platform": {
  54. "php": "5.3.9"
  55. }
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "1.10-dev"
  60. }
  61. },
  62. "autoload": {
  63. "psr-4": {
  64. "Composer\\": "src/Composer"
  65. }
  66. },
  67. "autoload-dev": {
  68. "psr-4": {
  69. "Composer\\Test\\": "tests/Composer/Test"
  70. }
  71. },
  72. "bin": [
  73. "bin/composer"
  74. ],
  75. "scripts": {
  76. "compile": "@php -dphar.readonly=0 bin/compile",
  77. "test": "simple-phpunit"
  78. },
  79. "scripts-descriptions": {
  80. "compile": "Compile composer.phar",
  81. "test": "Run all tests"
  82. },
  83. "support": {
  84. "issues": "https://github.com/composer/composer/issues",
  85. "irc": "irc://irc.freenode.org/composer"
  86. }
  87. }