composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "laravel/pint",
  3. "description": "An opinionated code formatter for PHP.",
  4. "keywords": ["php", "format", "formatter", "lint", "linter", "dev"],
  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.2.0",
  20. "ext-json": "*",
  21. "ext-mbstring": "*",
  22. "ext-tokenizer": "*",
  23. "ext-xml": "*"
  24. },
  25. "require-dev": {
  26. "friendsofphp/php-cs-fixer": "^3.95.1",
  27. "illuminate/view": "^12.56.0",
  28. "larastan/larastan": "^3.9.6",
  29. "laravel-zero/framework": "^12.1.0",
  30. "mockery/mockery": "^1.6.12",
  31. "nunomaduro/termwind": "^2.4.0",
  32. "pestphp/pest": "^3.8.6",
  33. "shipfastlabs/agent-detector": "^1.1.3"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "App\\": "app/",
  38. "Database\\Factories\\": "database/factories/",
  39. "Database\\Seeders\\": "database/seeders/"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Scripts\\": "scripts/",
  45. "Tests\\": "tests/"
  46. }
  47. },
  48. "config": {
  49. "preferred-install": "dist",
  50. "sort-packages": true,
  51. "optimize-autoloader": true,
  52. "platform": {
  53. "php": "8.2.0"
  54. },
  55. "allow-plugins": {
  56. "pestphp/pest-plugin": true
  57. }
  58. },
  59. "minimum-stability": "dev",
  60. "prefer-stable": true,
  61. "bin": ["builds/pint"]
  62. }