composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "composer/composer",
  3. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  4. "keywords": ["package", "dependency", "autoload"],
  5. "homepage": "https://getcomposer.org/",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nils Adermann",
  11. "email": "naderman@naderman.de",
  12. "homepage": "http://www.naderman.de"
  13. },
  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/composer/issues"
  23. },
  24. "require": {
  25. "php": ">=5.3.2",
  26. "justinrainbow/json-schema": "^1.4.4",
  27. "composer/spdx-licenses": "~1.0",
  28. "seld/jsonlint": "~1.0",
  29. "symfony/console": "~2.5",
  30. "symfony/finder": "~2.2",
  31. "symfony/process": "~2.1",
  32. "symfony/filesystem": "~2.5",
  33. "seld/phar-utils": "~1.0",
  34. "seld/cli-prompt": "~1.0"
  35. },
  36. "require-dev": {
  37. "phpunit/phpunit": "~4.5",
  38. "phpunit/phpunit-mock-objects": "2.3.0"
  39. },
  40. "_": "phpunit/phpunit-mock-objects required in 2.3.0 due to https://github.com/sebastianbergmann/phpunit-mock-objects/issues/223 - needs hhvm 3.8+ on travis",
  41. "config": {
  42. "platform": {
  43. "php": "5.3.3"
  44. }
  45. },
  46. "suggest": {
  47. "ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic",
  48. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages"
  49. },
  50. "autoload": {
  51. "psr-0": { "Composer": "src/" }
  52. },
  53. "autoload-dev": {
  54. "psr-0": { "Composer\\Test": "tests/" }
  55. },
  56. "bin": ["bin/composer"],
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "1.0-dev"
  60. }
  61. },
  62. "scripts": {
  63. "test": "phpunit"
  64. }
  65. }