composer.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.0@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.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. "react/promise": "^1.2 || ^2.7"
  39. },
  40. "conflict": {
  41. "symfony/console": "2.8.38",
  42. "symfony/phpunit-bridge": "3.4.40"
  43. },
  44. "require-dev": {
  45. "symfony/phpunit-bridge": "^3.4",
  46. "phpspec/prophecy": "^1.10"
  47. },
  48. "suggest": {
  49. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  50. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  51. "ext-zlib": "Allow gzip compression of HTTP requests"
  52. },
  53. "config": {
  54. "platform": {
  55. "php": "5.3.9"
  56. },
  57. "platform-check": false
  58. },
  59. "extra": {
  60. "branch-alias": {
  61. "dev-master": "2.0-dev"
  62. }
  63. },
  64. "autoload": {
  65. "psr-4": {
  66. "Composer\\": "src/Composer"
  67. }
  68. },
  69. "autoload-dev": {
  70. "psr-4": {
  71. "Composer\\Test\\": "tests/Composer/Test",
  72. "Composer\\PHPStanRules\\": "phpstan/Rules/src",
  73. "Composer\\PHPStanRulesTests\\": "phpstan/Rules/tests"
  74. },
  75. "classmap": [
  76. "phpstan/Rules/tests/data"
  77. ]
  78. },
  79. "bin": [
  80. "bin/composer"
  81. ],
  82. "scripts": {
  83. "compile": "@php -dphar.readonly=0 bin/compile",
  84. "test": "simple-phpunit"
  85. },
  86. "scripts-descriptions": {
  87. "compile": "Compile composer.phar",
  88. "test": "Run all tests"
  89. },
  90. "support": {
  91. "issues": "https://github.com/composer/composer/issues",
  92. "irc": "irc://irc.freenode.org/composer"
  93. }
  94. }