2
0

composer.json 475 B

1234567891011121314151617181920212223
  1. {
  2. "name": "michel/pure-plate",
  3. "description": "PurePlate is a lightweight and versatile template rendering library for native PHP.",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.4"
  7. },
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "F. Michel"
  12. }
  13. ],
  14. "autoload": {
  15. "psr-4": {
  16. "Michel\\Renderer\\": "src",
  17. "Test\\Michel\\Renderer\\": "tests"
  18. }
  19. },
  20. "require-dev": {
  21. "michel/unitester": "^1.0.0"
  22. }
  23. }