composer.json 544 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "olinox14/path",
  3. "description": "Simple, intuitive and object-oriented file and path operations, inspired by the path.py python library",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Olivier Massot",
  9. "email": "olinox14@tuta.io"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "Path\\": "src/"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "Path\\Tests\\": "tests/"
  20. }
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^9.6"
  24. },
  25. "minimum-stability": "dev",
  26. "prefer-stable": true
  27. }