composer.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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": "https://www.naderman.de"
  17. },
  18. {
  19. "name": "Jordi Boggiano",
  20. "email": "j.boggiano@seld.be",
  21. "homepage": "https://seld.be"
  22. }
  23. ],
  24. "require": {
  25. "php": "^5.3.2 || ^7.0",
  26. "composer/ca-bundle": "^1.0",
  27. "composer/semver": "^2.1@dev",
  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.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  35. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  36. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  37. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  38. "react/promise": "^1.2 || ^2.7"
  39. },
  40. "require-dev": {
  41. "symfony/phpunit-bridge": "^4.2 || ^5.0",
  42. "phpspec/prophecy": "^1.10"
  43. },
  44. "suggest": {
  45. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  46. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  47. "ext-zlib": "Allow gzip compression of HTTP requests"
  48. },
  49. "config": {
  50. "platform": {
  51. "php": "5.3.9"
  52. },
  53. "platform-check": false
  54. },
  55. "extra": {
  56. "branch-alias": {
  57. "dev-master": "2.0-dev"
  58. }
  59. },
  60. "autoload": {
  61. "psr-4": {
  62. "Composer\\": "src/Composer"
  63. }
  64. },
  65. "autoload-dev": {
  66. "psr-4": {
  67. "Composer\\Test\\": "tests/Composer/Test",
  68. "Composer\\PHPStanRules\\": "phpstan/Rules/src",
  69. "Composer\\PHPStanRulesTests\\": "phpstan/Rules/tests"
  70. },
  71. "classmap": [
  72. "phpstan/Rules/tests/data"
  73. ]
  74. },
  75. "bin": [
  76. "bin/composer"
  77. ],
  78. "scripts": {
  79. "compile": "@php -dphar.readonly=0 bin/compile",
  80. "test": "simple-phpunit"
  81. },
  82. "scripts-descriptions": {
  83. "compile": "Compile composer.phar",
  84. "test": "Run all tests"
  85. },
  86. "support": {
  87. "issues": "https://github.com/composer/composer/issues",
  88. "irc": "irc://irc.freenode.org/composer"
  89. }
  90. }