composer.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "laravel-lang/publisher",
  3. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "breeze",
  8. "cashier",
  9. "fortify",
  10. "i18n",
  11. "jetstream",
  12. "framework",
  13. "lang",
  14. "languages",
  15. "laravel",
  16. "locale",
  17. "locales",
  18. "localization",
  19. "lpm",
  20. "lumen",
  21. "nova",
  22. "publisher",
  23. "spark",
  24. "trans",
  25. "translations",
  26. "validations"
  27. ],
  28. "authors": [
  29. {
  30. "name": "Andrey Helldar",
  31. "email": "helldar@dragon-code.pro"
  32. },
  33. {
  34. "name": "Laravel-Lang Team",
  35. "homepage": "https://github.com/Laravel-Lang"
  36. }
  37. ],
  38. "support": {
  39. "issues": "https://github.com/Laravel-Lang/publisher/issues",
  40. "source": "https://github.com/Laravel-Lang/publisher"
  41. },
  42. "require": {
  43. "php": "^8.1",
  44. "ext-json": "*",
  45. "archtechx/enums": "^0.3",
  46. "composer/semver": "^3.3",
  47. "dragon-code/pretty-array": "^4.0",
  48. "dragon-code/support": "^6.3",
  49. "illuminate/console": "^8.79 || ^9.18 || ^10.0 || ^11.0",
  50. "illuminate/support": "^8.79 || ^9.18 || ^10.0 || ^11.0",
  51. "league/commonmark": "^2.3",
  52. "league/config": "^1.2"
  53. },
  54. "require-dev": {
  55. "laravel-lang/json-fallback-hotfix": "^1.0",
  56. "orchestra/testbench": "^6.25 || ^7.22 || ^8.0 || ^9.0",
  57. "phpunit/phpunit": "^9.6 || ^10.0",
  58. "symfony/var-dumper": "^5.0 || ^6.0"
  59. },
  60. "conflict": {
  61. "laravel-lang/attributes": "<2.0",
  62. "laravel-lang/http-statuses": "<3.0",
  63. "laravel-lang/lang": "<11.0"
  64. },
  65. "suggest": {
  66. "laravel-lang/attributes": "List of 78 languages for form field names",
  67. "laravel-lang/http-statuses": "List of 78 languages for HTTP statuses",
  68. "laravel-lang/lang": "List of 78 languages for Laravel Framework, Jetstream, Fortify, Breeze, Cashier, Nova, Spark and UI."
  69. },
  70. "minimum-stability": "stable",
  71. "prefer-stable": true,
  72. "autoload": {
  73. "psr-4": {
  74. "LaravelLang\\Publisher\\": "src"
  75. },
  76. "files": [
  77. "helper.php"
  78. ]
  79. },
  80. "autoload-dev": {
  81. "psr-4": {
  82. "Tests\\": "tests"
  83. },
  84. "files": [
  85. "tests/Fixtures/collision_functions.php"
  86. ]
  87. },
  88. "config": {
  89. "allow-plugins": {
  90. "dragon-code/codestyler": true,
  91. "ergebnis/composer-normalize": true,
  92. "friendsofphp/php-cs-fixer": true,
  93. "symfony/thanks": true
  94. },
  95. "preferred-install": "dist",
  96. "sort-packages": true
  97. },
  98. "extra": {
  99. "laravel": {
  100. "providers": [
  101. "LaravelLang\\Publisher\\ServiceProvider"
  102. ]
  103. }
  104. }
  105. }