composer.json 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "layershifter/tld-extract",
  3. "type": "library",
  4. "description": "TLDExtract, library for extracting parts of domain, e.q. domain parser",
  5. "keywords": [
  6. "TLDExtract",
  7. "domain parser"
  8. ],
  9. "minimum-stability": "stable",
  10. "license": "Apache-2.0",
  11. "authors": [
  12. {
  13. "name": "Alexander Fedyashov",
  14. "email": "a@fedyashov.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^5.5.0 || ^7.0",
  19. "layershifter/tld-database": "^1.0",
  20. "layershifter/tld-support": "^1.1",
  21. "true/punycode": "^2.1.1"
  22. },
  23. "require-dev": {
  24. "phpmd/phpmd": "@stable",
  25. "phpunit/phpunit": "^4.8 || ^5.0",
  26. "squizlabs/php_codesniffer": "~2.0"
  27. },
  28. "autoload": {
  29. "files": [
  30. "src/static.php"
  31. ],
  32. "psr-4": {
  33. "LayerShifter\\TLDExtract\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "LayerShifter\\TLDExtract\\Tests\\": "tests/"
  39. }
  40. },
  41. "scripts": {
  42. "test": "phpunit"
  43. }
  44. }