composer.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "giggsey/libphonenumber-for-php",
  3. "type": "library",
  4. "description": "PHP Port of Google's libphonenumber",
  5. "keywords": [
  6. "phonenumber",
  7. "libphonenumber",
  8. "mobile",
  9. "validation",
  10. "geocoding",
  11. "geolocation"
  12. ],
  13. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  14. "license": "Apache-2.0",
  15. "support": {
  16. "irc": "irc://irc.appliedirc.com/lobby",
  17. "source": "https://github.com/giggsey/libphonenumber-for-php",
  18. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues"
  19. },
  20. "authors": [
  21. {
  22. "name": "Joshua Gigg",
  23. "email": "giggsey@gmail.com",
  24. "homepage": "https://giggsey.com/"
  25. }
  26. ],
  27. "autoload": {
  28. "psr-4": {
  29. "libphonenumber\\": "src/"
  30. },
  31. "exclude-from-classmap": [
  32. "/src/data/",
  33. "/src/carrier/data/",
  34. "/src/geocoding/data/",
  35. "/src/timezone/data/"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "libphonenumber\\buildtools\\": "build/",
  41. "libphonenumber\\Tests\\": "tests/"
  42. }
  43. },
  44. "archive": {
  45. "exclude": [
  46. "build/",
  47. "docs/",
  48. "tests/",
  49. ".github/",
  50. ".editorconfig",
  51. ".gitattributes",
  52. ".gitignore",
  53. ".styleci.yml",
  54. ".travis.yml",
  55. "build.xml",
  56. "libphonenumber-for-php.spec",
  57. "phpunit.xml.dist",
  58. "phpunit"
  59. ]
  60. },
  61. "require": {
  62. "php": ">=5.3.2",
  63. "giggsey/locale": "^1.7|^2.0",
  64. "symfony/polyfill-mbstring": "^1.17"
  65. },
  66. "require-dev": {
  67. "phing/phing": "^2.7",
  68. "pear/versioncontrol_git": "^0.5",
  69. "pear/pear-core-minimal": "^1.9",
  70. "pear/pear_exception": "^1.0",
  71. "symfony/phpunit-bridge": "^4.2 || ^5",
  72. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  73. "php-coveralls/php-coveralls": "^1.0|^2.0"
  74. },
  75. "extra": {
  76. "branch-alias": {
  77. "dev-master": "8.x-dev"
  78. }
  79. },
  80. "scripts": {
  81. "test": "./phpunit",
  82. "metadata": "vendor/bin/phing compile"
  83. }
  84. }