composer.json 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "pda/pheanstalk",
  3. "type": "library",
  4. "description": "PHP client for beanstalkd queue",
  5. "keywords": ["beanstalkd"],
  6. "homepage": "https://github.com/pheanstalk/pheanstalk",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Paul Annesley",
  11. "email": "paul@annesley.cc",
  12. "homepage": "http://paul.annesley.cc/",
  13. "role": "Developer"
  14. },
  15. {
  16. "name": "Sam Mousa",
  17. "email": "sam@mousa.nl",
  18. "role": "Maintainer"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=7.1.0",
  23. "ext-mbstring": "*"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^7"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Pheanstalk\\": "src/"
  31. }
  32. },
  33. "scripts": {
  34. "phpunit": "docker-compose run --rm phpunit",
  35. "psalm": "@php vendor/bin/psalm --show-info=false src",
  36. "test": [
  37. "@composer install",
  38. "@phpunit"
  39. ]
  40. }
  41. }