4
0

composer.json 709 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "layershifter/tld-support",
  3. "description": "Support package for TLDDatabase and TLDExtract",
  4. "minimum-stability": "stable",
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "Alexander Fedyashov",
  9. "email": "a@fedyashov.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "LayerShifter\\TLDSupport\\": "src/"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "LayerShifter\\TLDSupport\\Tests\\": "tests/"
  20. }
  21. },
  22. "require": {
  23. "php": ">=5.5",
  24. "symfony/polyfill-mbstring": "^1.2"
  25. },
  26. "require-dev": {
  27. "codeclimate/php-test-reporter": "dev-master",
  28. "phpmd/phpmd": "@stable",
  29. "phpunit/phpunit": "4.8.*",
  30. "squizlabs/php_codesniffer": "2.*"
  31. }
  32. }