composer.json 718 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "jpush/jpush",
  3. "type": "library",
  4. "description": "JPush API PHP Client",
  5. "homepage": "https://github.com/jpush/jpush-api-php-client",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "JPush",
  10. "email": "support@jpush.cn",
  11. "homepage": "https://www.jpush.cn/",
  12. "role": "Developer"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.3",
  17. "ext-curl": "*"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "*"
  21. },
  22. "autoload" : {
  23. "psr-4": {"JPush\\": "src/JPush/"}
  24. },
  25. "autoload-dev": {
  26. "psr-4": { "JPush\\Tests\\": "tests/" }
  27. },
  28. "scripts": {
  29. "test": "vendor/bin/phpunit"
  30. }
  31. }