composer.json 536 B

123456789101112131415161718192021222324
  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. },
  21. "require-dev": {
  22. "michel/unitester": "^1.0.0"
  23. }
  24. }