截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "rmccue/requests",
  3. "description": "A HTTP library written in PHP, for human beings.",
  4. "homepage": "http://github.com/WordPress/Requests",
  5. "license": "ISC",
  6. "keywords": ["http", "idna", "iri", "ipv6", "curl", "sockets", "fsockopen"],
  7. "authors": [
  8. {
  9. "name": "Ryan McCue",
  10. "homepage": "http://ryanmccue.info"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.2"
  15. },
  16. "require-dev": {
  17. "requests/test-server": "dev-master",
  18. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  19. "squizlabs/php_codesniffer": "^3.5",
  20. "phpcompatibility/php-compatibility": "^9.0",
  21. "wp-coding-standards/wpcs": "^2.0",
  22. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  23. "php-parallel-lint/php-parallel-lint": "^1.3",
  24. "php-parallel-lint/php-console-highlighter": "^0.5.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-0": {"Requests": "library/"}
  29. },
  30. "scripts" : {
  31. "lint": [
  32. "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git"
  33. ],
  34. "checkcs": [
  35. "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs"
  36. ],
  37. "fixcs": [
  38. "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
  39. ],
  40. "test": [
  41. "@php ./vendor/phpunit/phpunit/phpunit --no-coverage"
  42. ],
  43. "coverage": [
  44. "@php ./vendor/phpunit/phpunit/phpunit"
  45. ]
  46. }
  47. }