composer.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "zendframework/zend-serializer",
  3. "description": "Serialize and deserialize PHP structures to a variety of representations",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "serializer"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-serializer/",
  12. "issues": "https://github.com/zendframework/zend-serializer/issues",
  13. "source": "https://github.com/zendframework/zend-serializer",
  14. "rss": "https://github.com/zendframework/zend-serializer/releases.atom",
  15. "chat": "https://zendframework-slack.herokuapp.com",
  16. "forum": "https://discourse.zendframework.com/c/questions/components"
  17. },
  18. "require": {
  19. "php": "^5.6 || ^7.0",
  20. "zendframework/zend-json": "^2.5 || ^3.0",
  21. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.16",
  25. "zendframework/zend-coding-standard": "~1.0.0",
  26. "zendframework/zend-math": "^2.6 || ^3.0",
  27. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
  28. },
  29. "suggest": {
  30. "zendframework/zend-math": "(^2.6 || ^3.0) To support Python Pickle serialization",
  31. "zendframework/zend-servicemanager": "(^2.7.5 || ^3.0.3) To support plugin manager support"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Zend\\Serializer\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "ZendTest\\Serializer\\": "test/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "2.9.x-dev",
  49. "dev-develop": "2.10.x-dev"
  50. },
  51. "zf": {
  52. "component": "Zend\\Serializer",
  53. "config-provider": "Zend\\Serializer\\ConfigProvider"
  54. }
  55. },
  56. "scripts": {
  57. "check": [
  58. "@cs-check",
  59. "@test"
  60. ],
  61. "cs-check": "phpcs",
  62. "cs-fix": "phpcbf",
  63. "test": "phpunit --colors=always",
  64. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  65. }
  66. }