composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "roots/sage",
  3. "type": "wordpress-theme",
  4. "license": "MIT",
  5. "description": "WordPress starter theme with a modern development workflow",
  6. "homepage": "https://roots.io/sage/",
  7. "authors": [
  8. {
  9. "name": "Ben Word",
  10. "email": "ben@benword.com",
  11. "homepage": "https://github.com/retlehs"
  12. },
  13. {
  14. "name": "Scott Walkinshaw",
  15. "email": "scott.walkinshaw@gmail.com",
  16. "homepage": "https://github.com/swalkinshaw"
  17. },
  18. {
  19. "name": "QWp6t",
  20. "email": "hi@qwp6t.me",
  21. "homepage": "https://github.com/qwp6t"
  22. },
  23. {
  24. "name": "Brandon Nifong",
  25. "email": "brandon@tendency.me",
  26. "homepage": "https://github.com/log1x"
  27. }
  28. ],
  29. "keywords": [
  30. "wordpress"
  31. ],
  32. "support": {
  33. "issues": "https://github.com/roots/sage/issues",
  34. "forum": "https://discourse.roots.io/"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "App\\": "app/"
  39. }
  40. },
  41. "require": {
  42. "php": "^8.0"
  43. },
  44. "require-dev": {
  45. "squizlabs/php_codesniffer": "3.7.1"
  46. },
  47. "suggest": {
  48. "log1x/sage-directives": "A collection of useful Blade directives for WordPress and Sage (^1.0).",
  49. "log1x/sage-svg": "A useful SVG directive for inlining SVG's within Blade views (^1.0)."
  50. },
  51. "config": {
  52. "optimize-autoloader": true,
  53. "preferred-install": "dist",
  54. "sort-packages": true
  55. },
  56. "minimum-stability": "dev",
  57. "prefer-stable": true,
  58. "scripts": {
  59. "lint": [
  60. "phpcs --extensions=php --standard=PSR12 app"
  61. ]
  62. },
  63. "extra": {
  64. "acorn": {
  65. "providers": [
  66. "App\\Providers\\ThemeServiceProvider"
  67. ]
  68. }
  69. }
  70. }