composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "laravel-lang/http-statuses",
  3. "description": "List of 127 languages for HTTP statuses",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "laravel",
  8. "languages",
  9. "lang",
  10. "translations",
  11. "messages",
  12. "http",
  13. "status"
  14. ],
  15. "authors": [
  16. {
  17. "name": "Andrey Helldar",
  18. "email": "helldar@dragon-code.pro"
  19. },
  20. {
  21. "name": "Laravel-Lang Team",
  22. "homepage": "https://github.com/Laravel-Lang"
  23. }
  24. ],
  25. "require": {
  26. "php": "^8.1",
  27. "ext-json": "*",
  28. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0"
  29. },
  30. "require-dev": {
  31. "laravel-lang/status-generator": "^1.19 || ^2.0",
  32. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  33. "symfony/var-dumper": "^6.0 || ^7.0"
  34. },
  35. "minimum-stability": "stable",
  36. "prefer-stable": true,
  37. "autoload": {
  38. "psr-4": {
  39. "LaravelLang\\HttpStatuses\\": "src"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Tests\\": "tests"
  45. }
  46. },
  47. "config": {
  48. "allow-plugins": {
  49. "dragon-code/codestyler": true,
  50. "ergebnis/composer-normalize": true,
  51. "friendsofphp/php-cs-fixer": true,
  52. "php-http/discovery": true,
  53. "symfony/thanks": true
  54. },
  55. "preferred-install": "dist",
  56. "sort-packages": true
  57. },
  58. "extra": {
  59. "laravel": {
  60. "providers": [
  61. "LaravelLang\\HttpStatuses\\ServiceProvider"
  62. ]
  63. }
  64. }
  65. }