composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "spatie/async",
  3. "description": "Asynchronous and parallel PHP with the PCNTL extension",
  4. "keywords": [
  5. "spatie",
  6. "async"
  7. ],
  8. "homepage": "https://github.com/spatie/async",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Brent Roose",
  13. "email": "brent@spatie.be",
  14. "homepage": "https://spatie.be",
  15. "role": "Developer"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.1 || ^8.0",
  20. "opis/closure": "^3.4.2",
  21. "symfony/process": "^3.3 || ^4.0 || ^5.0"
  22. },
  23. "require-dev": {
  24. "larapack/dd": "^1.1",
  25. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
  26. "symfony/stopwatch": "^4.0 || ^5.0"
  27. },
  28. "suggest": {
  29. "ext-pcntl": "Required to use async processes",
  30. "ext-posix": "Required to use async processes"
  31. },
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Spatie\\Async\\": "src"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Spatie\\Async\\Tests\\": "tests"
  43. }
  44. },
  45. "scripts": {
  46. "test": "vendor/bin/phpunit"
  47. },
  48. "config": {
  49. "sort-packages": true
  50. }
  51. }