composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "alchemy/zippy",
  3. "type": "library",
  4. "description": "Zippy, the archive manager companion",
  5. "keywords": ["zip", "tar", "bzip", "compression"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Alchemy",
  10. "email": "dev.team@alchemy.fr",
  11. "homepage": "http://www.alchemy.fr/"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.5",
  16. "doctrine/collections": "~1.0",
  17. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  18. "symfony/process": "^2.1 || ^3.0 || ^4.0",
  19. "symfony/polyfill-mbstring": "^1.3"
  20. },
  21. "require-dev": {
  22. "ext-zip": "*",
  23. "guzzle/guzzle": "~3.0",
  24. "guzzlehttp/guzzle": "^6.0",
  25. "phpunit/phpunit": "^4.0 || ^5.0",
  26. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  27. },
  28. "suggest": {
  29. "ext-zip": "To use the ZipExtensionAdapter",
  30. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6",
  31. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Alchemy\\Zippy\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Alchemy\\Zippy\\Functional\\": "tests/Functional/",
  41. "Alchemy\\Zippy\\Tests\\": "tests/Tests/"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "0.4.x-dev"
  47. }
  48. }
  49. }