composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "giggsey/locale",
  3. "description": "Locale functions required by libphonenumber-for-php",
  4. "minimum-stability": "stable",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Joshua Gigg",
  9. "email": "giggsey@gmail.com",
  10. "homepage": "https://giggsey.com/"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.2"
  15. },
  16. "require-dev": {
  17. "ext-json": "*",
  18. "php-coveralls/php-coveralls": "^2.0",
  19. "phing/phing": "^2.7",
  20. "pear/versioncontrol_git": "^0.5",
  21. "pear/pear-core-minimal": "^1.9",
  22. "pear/pear_exception": "^1.0",
  23. "phpunit/phpunit": "^8.5|^9.5",
  24. "symfony/console": "^5.0",
  25. "symfony/filesystem": "^5.0",
  26. "symfony/process": "^5.0",
  27. "symfony/finder": "^5.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Giggsey\\Locale\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Giggsey\\Locale\\Tests\\": "tests/",
  37. "Giggsey\\Locale\\Build\\": "build/Build/"
  38. }
  39. },
  40. "archive": {
  41. "exclude": [
  42. "build/",
  43. "tests/",
  44. ".gitattributes",
  45. ".gitignore",
  46. ".styleci.yml",
  47. ".travis.yml",
  48. "build.xml",
  49. "phpunit.xml.dist"
  50. ]
  51. },
  52. "scripts": {
  53. "test": "phpunit",
  54. "metadata": "phing compile"
  55. }
  56. }