composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "zoon/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.2 || ^8.0",
  22. "clue/socket-raw": "^1.2",
  23. "psr/log": "^1.0 || ^2.0 || ^3.0",
  24. "symfony/process": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  25. },
  26. "require-dev": {
  27. "monolog/monolog": "^1.0 || ^2.0 || ^3.0",
  28. "phpunit/phpunit": "^8.0 || ^9.0 || ^10"
  29. },
  30. "suggest": {
  31. "ext-weakref": "Required to run all the tests"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Nesk\\Rialto\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Nesk\\Rialto\\Tests\\": "tests/"
  41. }
  42. },
  43. "scripts": {
  44. "post-install-cmd": "npm install",
  45. "test": "./vendor/bin/phpunit"
  46. },
  47. "config": {
  48. "sort-packages": true
  49. }
  50. }