composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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",
  27. "seld/jsonlint": "~1.0",
  28. "symfony/console": "~2.5",
  29. "symfony/finder": "~2.2",
  30. "symfony/process": "~2.1",
  31. "seld/phar-utils": "~1.0",
  32. "seld/cli-prompt": "~1.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "~4.5",
  36. "phpunit/phpunit-mock-objects": "2.3.0"
  37. },
  38. "_": "phpunit/phpunit-mock-objects required in 2.3.0 due to https://github.com/sebastianbergmann/phpunit-mock-objects/issues/223",
  39. "config": {
  40. "platform": {
  41. "php": "5.3.3"
  42. }
  43. },
  44. "suggest": {
  45. "ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic",
  46. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages"
  47. },
  48. "autoload": {
  49. "psr-0": { "Composer": "src/" }
  50. },
  51. "autoload-dev": {
  52. "psr-0": { "Composer\\Test": "tests/" }
  53. },
  54. "bin": ["bin/composer"],
  55. "extra": {
  56. "branch-alias": {
  57. "dev-master": "1.0-dev"
  58. }
  59. },
  60. "scripts": {
  61. "test": "phpunit"
  62. }
  63. }