manifest.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "Prestashop",
  3. "id": "prestashop",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Create a E-commerce Website",
  7. "fr": "Créer un site ecommerce"
  8. },
  9. "version": "1.7.8.7~ynh1",
  10. "url": "https://www.prestashop.com/",
  11. "upstream": {
  12. "license": "OSL-3.0",
  13. "website": "https://prestashop.com",
  14. "demo": "https://demo.prestashop.com/#/en/front",
  15. "userdoc": "https://doc.prestashop.com/display/PS17/Guide+de+l'utilisateur",
  16. "code": "https://github.com/PrestaShop/PrestaShop"
  17. },
  18. "license": "OSL-3.0",
  19. "maintainer": {
  20. "name": "frju365",
  21. "email": "abld@abld.info"
  22. },
  23. "previous_maintainers": [
  24. {
  25. "name": "cyp",
  26. "email": "cyp@rouquin.me",
  27. "url": ""
  28. }
  29. ],
  30. "requirements": {
  31. "yunohost": ">= 4.3.0"
  32. },
  33. "multi_instance": true,
  34. "services": [
  35. "nginx",
  36. "php7.3-fpm",
  37. "mysql"
  38. ],
  39. "arguments": {
  40. "install" : [
  41. {
  42. "name": "domain",
  43. "type": "domain"
  44. },
  45. {
  46. "name": "path",
  47. "type": "path",
  48. "example": "/prestashop",
  49. "default": "/prestashop"
  50. },
  51. {
  52. "name": "admin",
  53. "type": "user"
  54. },
  55. {
  56. "name": "is_public",
  57. "type": "boolean",
  58. "default": true
  59. }
  60. ]
  61. }
  62. }