composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "composer/schema-test",
  3. "description": "Dummy file to test the schema verification",
  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": "https://www.naderman.de"
  13. },
  14. {
  15. "name": "Jordi Boggiano",
  16. "email": "j.boggiano@seld.be",
  17. "homepage": "https://seld.be"
  18. }
  19. ],
  20. "support": {
  21. "irc": "irc://irc.freenode.org/composer",
  22. "issues": "https://github.com/composer/composer/issues"
  23. },
  24. "funding": [
  25. {
  26. "type": "service-subscription",
  27. "url": "https://packagist.com"
  28. }
  29. ],
  30. "require": {
  31. "php": ">=5.3.2",
  32. "justinrainbow/json-schema": "~1.4",
  33. "seld/jsonlint": "~1.0",
  34. "symfony/console": "~2.5",
  35. "symfony/finder": "~2.2",
  36. "symfony/process": "~2.1"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "~4.5"
  40. },
  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. }