composer.json 566 B

12345678910111213141516171819202122232425262728
  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. "ext-posix": "*"
  25. },
  26. "minimum-stability": "dev",
  27. "prefer-stable": true
  28. }