composer.json 996 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "danielstjules/stringy",
  3. "description": "A string manipulation library with multibyte support",
  4. "keywords": [
  5. "multibyte", "string", "manipulation", "utility", "methods", "utf-8",
  6. "helpers", "utils", "utf"
  7. ],
  8. "homepage": "https://github.com/danielstjules/Stringy",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Daniel St. Jules",
  13. "email": "danielst.jules@gmail.com",
  14. "homepage": "http://www.danielstjules.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.4.0",
  19. "symfony/polyfill-mbstring": "~1.1"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~4.0"
  23. },
  24. "support": {
  25. "issues": "https://github.com/danielstjules/Stringy/issues",
  26. "source": "https://github.com/danielstjules/Stringy"
  27. },
  28. "autoload": {
  29. "psr-4": { "Stringy\\": "src/" },
  30. "files": ["src/Create.php"]
  31. },
  32. "autoload-dev": {
  33. "classmap": [ "tests" ]
  34. }
  35. }