composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "respect/stringifier",
  3. "description": "Converts any value to a string",
  4. "keywords": ["respect", "stringifier", "stringify"],
  5. "type": "library",
  6. "homepage": "http://respect.github.io/Stringifier/",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Respect/Stringifier Contributors",
  11. "homepage": "https://github.com/Respect/Stringifier/graphs/contributors"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=7.1"
  16. },
  17. "require-dev": {
  18. "friendsofphp/php-cs-fixer": "^2.8",
  19. "malukenho/docheader": "^0.1.7",
  20. "phpunit/phpunit": "^6.4"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Respect\\Stringifier\\": "src/"
  25. },
  26. "files": [
  27. "src/stringify.php"
  28. ]
  29. },
  30. "scripts": {
  31. "docheader": "vendor/bin/docheader check src/ tests/",
  32. "test": "vendor/bin/phpunit",
  33. "test-unit": "vendor/bin/phpunit --testsuite=unit",
  34. "test-integration": "vendor/bin/phpunit --testsuite=integration"
  35. }
  36. }