composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "nesk/rialto",
  3. "description": "Manage Node resources from PHP",
  4. "keywords": [
  5. "php",
  6. "node",
  7. "wrapper",
  8. "communication",
  9. "bridge",
  10. "socket"
  11. ],
  12. "type": "library",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Johann Pardanaud",
  17. "email": "pardanaud.j@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=7.1",
  22. "clue/socket-raw": "^1.2",
  23. "psr/log": "^1.0",
  24. "symfony/process": "^3.3|^4.0|^5.0"
  25. },
  26. "require-dev": {
  27. "codedungeon/phpunit-result-printer": ">=0.6 <1.0",
  28. "monolog/monolog": "^1.23",
  29. "phpunit/phpunit": "^6.5|^7.0"
  30. },
  31. "suggest": {
  32. "ext-weakref": "Required to run all the tests"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Nesk\\Rialto\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Nesk\\Rialto\\Tests\\": "tests/"
  42. }
  43. },
  44. "scripts": {
  45. "post-install-cmd": "npm install",
  46. "test": "./vendor/bin/phpunit"
  47. },
  48. "config": {
  49. "sort-packages": true
  50. }
  51. }