composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "laravel-lang/common",
  3. "description": "Easily connect the necessary language packs to the application",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "laravel-lang",
  8. "translation",
  9. "translations",
  10. "laravel",
  11. "language",
  12. "languages",
  13. "locales",
  14. "locale",
  15. "i18n",
  16. "lang",
  17. "publisher",
  18. "http",
  19. "http-status-code",
  20. "http-status",
  21. "attribute",
  22. "attributes"
  23. ],
  24. "authors": [
  25. {
  26. "name": "Laravel-Lang Team",
  27. "homepage": "https://github.com/Laravel-Lang"
  28. },
  29. {
  30. "name": "Andrey Helldar",
  31. "email": "helldar@dragon-code.pro",
  32. "homepage": "https://github.com/andrey-helldar"
  33. }
  34. ],
  35. "support": {
  36. "issues": "https://github.com/Laravel-Lang/common/issues",
  37. "source": "https://github.com/Laravel-Lang/common"
  38. },
  39. "require": {
  40. "php": "^8.0",
  41. "laravel-lang/attributes": "^2.0",
  42. "laravel-lang/http-statuses": "^3.0",
  43. "laravel-lang/lang": "^12.0",
  44. "laravel-lang/publisher": "^14.0"
  45. },
  46. "require-dev": {
  47. "orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
  48. "phpunit/phpunit": "^9.6",
  49. "symfony/var-dumper": "^5.4 || ^6.0"
  50. },
  51. "minimum-stability": "stable",
  52. "prefer-stable": true,
  53. "autoload-dev": {
  54. "psr-4": {
  55. "Tests\\": "tests"
  56. }
  57. },
  58. "config": {
  59. "allow-plugins": {
  60. "composer/package-versions-deprecated": true,
  61. "ergebnis/composer-normalize": true,
  62. "dragon-code/codestyler": true,
  63. "friendsofphp/php-cs-fixer": true
  64. },
  65. "preferred-install": "dist",
  66. "sort-packages": true
  67. }
  68. }