composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "bztsrc/phppe3",
  3. "description": "Meta package for PHP Portal Engine. Minimalistic, scalable and secure PHP framework and CMS with tons of features, ideal on a Raspberry Pi.",
  4. "keywords": [ "framework", "phppe", "cms", "kiss", "security", "opensource", "wyswyg", "raspberry", "raspberry pi", "rpi", "arm" ],
  5. "version": "3.0.0",
  6. "version_normalized": "3.0.0.0",
  7. "type": "project",
  8. "license": "LGPL-3.0-or-later",
  9. "homepage": "https://bztsrc.github.io/phppe3/",
  10. "repositories":[
  11. {"type":"composer","url":"https://bztsrc.github.io/phppe3/"}
  12. ],
  13. "require": {
  14. "php": ">=7.0",
  15. "phppe/Core": ">=3.0"
  16. },
  17. "suggest": {
  18. "phppe/bootstrap": "*",
  19. "phppe/CMS": "*",
  20. "phppe/Extensions": "*",
  21. "phppe/Developer": "*",
  22. "phppe/GPIO": "*"
  23. },
  24. "support": {
  25. "source": "https://github.com/bztsrc/phppe3/",
  26. "wiki": "https://bztsrc.github.io/phppe3/"
  27. },
  28. "maintainer": { "name": "bzt" },
  29. "scripts":{
  30. "post-install-cmd":"sudo php public/index.php --diag",
  31. "post-update-cmd": "sudo php public/index.php --diag"
  32. }
  33. }