Nav apraksta

composer.json 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "name": "automattic/jetpack",
  3. "description": "Jetpack supercharges your self‑hosted WordPress site with the awesome cloud power of WordPress.com",
  4. "homepage": "https://jetpack.com/",
  5. "type": "wordpress-plugin",
  6. "license": "GPL-2.0-or-later",
  7. "support": {
  8. "issues": "https://github.com/Automattic/jetpack/issues"
  9. },
  10. "require": {
  11. "ext-fileinfo": "*",
  12. "ext-json": "*",
  13. "ext-openssl": "*",
  14. "automattic/jetpack-a8c-mc-stats": "^1.4",
  15. "automattic/jetpack-abtest": "^1.9",
  16. "automattic/jetpack-assets": "^1.11",
  17. "automattic/jetpack-autoloader": "^2.10",
  18. "automattic/jetpack-backup": "^1.1",
  19. "automattic/jetpack-blocks": "^1.4",
  20. "automattic/jetpack-compat": "^1.6",
  21. "automattic/jetpack-config": "^1.5",
  22. "automattic/jetpack-connection": "^1.30",
  23. "automattic/jetpack-connection-ui": "^1.4",
  24. "automattic/jetpack-constants": "^1.6",
  25. "automattic/jetpack-device-detection": "^1.4",
  26. "automattic/jetpack-error": "^1.3",
  27. "automattic/jetpack-heartbeat": "^1.3",
  28. "automattic/jetpack-identity-crisis": "^0.2",
  29. "automattic/jetpack-jitm": "^2.0",
  30. "automattic/jetpack-lazy-images": "^2.0",
  31. "automattic/jetpack-licensing": "^1.4",
  32. "automattic/jetpack-logo": "^1.5",
  33. "automattic/jetpack-options": "^1.13",
  34. "automattic/jetpack-partner": "^1.5",
  35. "automattic/jetpack-redirect": "^1.7",
  36. "automattic/jetpack-roles": "^1.4",
  37. "automattic/jetpack-status": "^1.8",
  38. "automattic/jetpack-sync": "^1.26",
  39. "automattic/jetpack-terms-of-service": "^1.9",
  40. "automattic/jetpack-tracking": "^1.13",
  41. "nojimage/twitter-text-php": "3.1.2"
  42. },
  43. "require-dev": {
  44. "automattic/jetpack-changelogger": "^2.0",
  45. "johnkary/phpunit-speedtrap": "^4.0.0 || ^2.0.0 || ^1.1.0",
  46. "yoast/phpunit-polyfills": "1.0.1"
  47. },
  48. "scripts": {
  49. "build-production": [
  50. "Composer\\Config::disableProcessTimeout",
  51. "pnpm run build-production-concurrently"
  52. ],
  53. "build-development": [
  54. "Composer\\Config::disableProcessTimeout",
  55. "pnpm run build-concurrently"
  56. ],
  57. "phpunit": [
  58. "tests/action-phpunit.sh"
  59. ],
  60. "test-coverage": [
  61. "Composer\\Config::disableProcessTimeout",
  62. "@composer install",
  63. "@php tools/build-module-headings-translations.php",
  64. "tests/action-test-coverage.sh"
  65. ],
  66. "test-js": [
  67. "Composer\\Config::disableProcessTimeout",
  68. "pnpm install",
  69. "pnpx concurrently 'pnpm:test-adminpage' 'pnpm:test-extensions' 'pnpm:test-search'"
  70. ],
  71. "test-php": [
  72. "Composer\\Config::disableProcessTimeout",
  73. "@composer install",
  74. "@php tools/build-module-headings-translations.php",
  75. "tests/action-test-php.sh"
  76. ],
  77. "watch": [
  78. "Composer\\Config::disableProcessTimeout",
  79. "pnpm run watch"
  80. ]
  81. },
  82. "repositories": [],
  83. "autoload": {
  84. "classmap": [
  85. "src"
  86. ]
  87. },
  88. "minimum-stability": "dev",
  89. "prefer-stable": true,
  90. "config": {
  91. "sort-packages": true,
  92. "platform": {
  93. "ext-intl": "0.0.0"
  94. },
  95. "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_2"
  96. },
  97. "extra": {
  98. "mirror-repo": "Automattic/jetpack-production",
  99. "release-branch-prefix": "jetpack",
  100. "version-constants": {
  101. "JETPACK__VERSION": "jetpack.php"
  102. },
  103. "wp-plugin-slug": "jetpack",
  104. "changelogger-default-type": "other",
  105. "changelogger": {
  106. "versioning": "wordpress",
  107. "types": {
  108. "major": "Major Enhancements",
  109. "enhancement": "Enhancements",
  110. "compat": "Improved compatibility",
  111. "bugfix": "Bug fixes",
  112. "other": "Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->"
  113. }
  114. }
  115. }
  116. }