composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "laravel/pint",
  3. "description": "An opinionated code formatter for PHP.",
  4. "keywords": ["php", "format", "formatter", "lint", "linter"],
  5. "homepage": "https://laravel.com",
  6. "type": "project",
  7. "license": "MIT",
  8. "support": {
  9. "issues": "https://github.com/laravel/pint/issues",
  10. "source": "https://github.com/laravel/pint"
  11. },
  12. "authors": [
  13. {
  14. "name": "Nuno Maduro",
  15. "email": "enunomaduro@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": "^8.1.0",
  20. "ext-json": "*",
  21. "ext-mbstring": "*",
  22. "ext-tokenizer": "*",
  23. "ext-xml": "*"
  24. },
  25. "require-dev": {
  26. "friendsofphp/php-cs-fixer": "^3.57.1",
  27. "illuminate/view": "^10.48.10",
  28. "larastan/larastan": "^2.9.6",
  29. "laravel-zero/framework": "^10.4.0",
  30. "mockery/mockery": "^1.6.12",
  31. "nunomaduro/termwind": "^1.15.1",
  32. "pestphp/pest": "^2.34.7"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "App\\": "app/",
  37. "Database\\Factories\\": "database/factories/",
  38. "Database\\Seeders\\": "database/seeders/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Scripts\\": "scripts/",
  44. "Tests\\": "tests/"
  45. }
  46. },
  47. "config": {
  48. "preferred-install": "dist",
  49. "sort-packages": true,
  50. "optimize-autoloader": true,
  51. "platform": {
  52. "php": "8.1.0"
  53. },
  54. "allow-plugins": {
  55. "pestphp/pest-plugin": true
  56. }
  57. },
  58. "minimum-stability": "dev",
  59. "prefer-stable": true,
  60. "bin": ["builds/pint"]
  61. }