composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "automattic/underscores",
  3. "type": "wordpress-theme",
  4. "description": "Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.",
  5. "keywords": [
  6. "WordPress",
  7. "Themes"
  8. ],
  9. "homepage": "https://github.com/Automattic/_s",
  10. "license": "GPL-2.0-or-later",
  11. "authors": [
  12. {
  13. "name": "Contributors",
  14. "homepage": "https://github.com/Automattic/_s/graphs/contributors"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.6"
  19. },
  20. "require-dev": {
  21. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  22. "wptrt/wpthemereview": "^0.2.1",
  23. "php-parallel-lint/php-parallel-lint": "^1.2.0",
  24. "wp-cli/i18n-command": "^2.2.5"
  25. },
  26. "scripts": {
  27. "lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
  28. "lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
  29. "make-pot": "wp i18n make-pot . languages/_s.pot"
  30. },
  31. "support": {
  32. "issues": "https://github.com/Automattic/_s/issues",
  33. "source": "https://github.com/Automattic/_s"
  34. }
  35. }