composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "oxusmedia/webapp-multi-skeleton",
  3. "description": "Project skeleton for webapp multi account admin panel",
  4. "type": "project",
  5. "authors": [
  6. {
  7. "name": "Fernando Badano",
  8. "email": "fernando@oxusmedia.com",
  9. "homepage": "https://www.oxusmedia.com",
  10. "role": "Developer"
  11. },
  12. {
  13. "name": "Gabriel Badano",
  14. "email": "gbadano@oxusmedia.com",
  15. "homepage": "https://www.oxusmedia.com",
  16. "role": "Developer"
  17. }
  18. ],
  19. "config": {
  20. "vendor-dir": "protected/vendor"
  21. },
  22. "require": {
  23. "oxusmedia/webapp-multi": "*"
  24. },
  25. "repositories": [
  26. {
  27. "type": "vcs",
  28. "url": "gogs@gogs.oxusmedia.com:oxusmedia/webapp.git"
  29. },
  30. {
  31. "type": "vcs",
  32. "url": "gogs@gogs.oxusmedia.com:oxusmedia/webapp-multi.git"
  33. }
  34. ],
  35. "scripts": {
  36. "post-update-cmd": [
  37. "php protected/vendor/oxusmedia/webapp/scripts/installassets.php assets"
  38. ],
  39. "post-install-cmd": [
  40. "php protected/vendor/oxusmedia/webapp/scripts/installassets.php assets"
  41. ]
  42. }
  43. }