composer.json 512 B

1234567891011121314151617181920212223
  1. {
  2. "name": "michel/filesystem",
  3. "description": "A lightweight PHP library for file system operations, including temporary file creation, file manipulation, and metadata handling using SPL.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\FileSystem\\": "src",
  14. "Test\\Michel\\FileSystem\\": "tests"
  15. }
  16. },
  17. "require": {
  18. "php": ">=7.4"
  19. },
  20. "require-dev": {
  21. "michel/unitester": "^1.0.0"
  22. }
  23. }