composer.json 778 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "marienfressinaud/lib_opml",
  3. "description": "A library to read and write OPML in PHP.",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Marien Fressinaud",
  8. "email": "dev@marienfressinaud.fr"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.2.0",
  13. "ext-dom": "*"
  14. },
  15. "config": {
  16. "platform": {
  17. "php": "7.2.0"
  18. }
  19. },
  20. "support": {
  21. "issues": "https://framagit.org/marienfressinaud/lib_opml/-/issues"
  22. },
  23. "autoload": {
  24. "files": [
  25. "src/functions.php"
  26. ],
  27. "psr-4": {
  28. "marienfressinaud\\": "src/"
  29. }
  30. },
  31. "require-dev": {
  32. "squizlabs/php_codesniffer": "^3.6",
  33. "phpunit/phpunit": "^8"
  34. }
  35. }