composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "nesk/puphpeteer",
  3. "description": "A Puppeteer bridge for PHP, supporting the entire API.",
  4. "keywords": [
  5. "php",
  6. "puppeteer",
  7. "headless-chrome",
  8. "testing",
  9. "web",
  10. "developer-tools",
  11. "automation"
  12. ],
  13. "type": "library",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Johann Pardanaud",
  18. "email": "pardanaud.j@gmail.com"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=7.1",
  23. "nesk/rialto": "^1.2.0",
  24. "psr/log": "^1.0",
  25. "vierbergenlars/php-semver": "^3.0.2"
  26. },
  27. "require-dev": {
  28. "codedungeon/phpunit-result-printer": ">=0.6 <1.0",
  29. "monolog/monolog": "^1.23",
  30. "phpunit/phpunit": "^6.5|^7.0",
  31. "symfony/process": "^4.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Nesk\\Puphpeteer\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Nesk\\Puphpeteer\\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. }