composer.json 561 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. "require": {},
  13. "autoload": {
  14. "psr-4": {
  15. "Path\\": "src/"
  16. }
  17. },
  18. "autoload-dev": {
  19. "psr-4": {
  20. "Path\\Tests\\": "tests/"
  21. }
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^9.0"
  25. },
  26. "minimum-stability": "dev",
  27. "prefer-stable": true
  28. }