composer.json 965 B

1234567891011121314151617181920212223
  1. {
  2. "name" : "automattic/jetpack",
  3. "description": "Jetpack supercharges your self‑hosted WordPress site with the awesome cloud power of WordPress.com",
  4. "homepage" : "http://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. "composer/installers": "~1.0"
  12. },
  13. "require-dev": {
  14. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  15. "wp-coding-standards/wpcs": "^0.14.0",
  16. "sirbrillig/phpcs-variable-analysis": "^2.0",
  17. "wimg/php-compatibility": "^8.1"
  18. },
  19. "scripts": {
  20. "php:5.2-compatibility": "composer install && vendor/bin/phpcs -p --runtime-set testVersion '5.2-' --standard=PHPCompatibility --ignore=docker,tools,tests,node_modules,vendor --extensions=php",
  21. "php:lint": "composer install && vendor/bin/phpcs -p"
  22. }
  23. }