composer.json 556 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "michel/lock",
  3. "description": "A flexible PHP locking library designed to prevent race conditions in CLI and web environments.",
  4. "type": "library",
  5. "license": "MPL-2.0",
  6. "keywords": ["lock", "flock", "mutex", "process-synchronization", "native-php"],
  7. "authors": [
  8. {
  9. "name": "Michel.F"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "Michel\\Lock\\": "src",
  15. "Test\\Michel\\Lock\\": "tests"
  16. }
  17. },
  18. "require": {
  19. "php": ">=7.4",
  20. "ext-pdo": "*"
  21. },
  22. "require-dev": {
  23. "michel/unitester": "^1.0.0"
  24. }
  25. }