composer.json 476 B

123456789101112131415161718192021222324
  1. {
  2. "name": "upstatement/timber-starter-theme",
  3. "description": "Starter theme to build a Timber theme",
  4. "type":"wordpress-theme",
  5. "minimum-stability" : "stable",
  6. "authors": [
  7. {
  8. "email": "jared@upstatement.com",
  9. "name": "jarednova"
  10. }
  11. ],
  12. "repositories": [
  13. {
  14. "type": "composer",
  15. "url": "https://wpackagist.org"
  16. }
  17. ],
  18. "require": {
  19. "timber/timber": "1.*"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "5.7.16|6.*"
  23. }
  24. }