composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "dongasai/dcat-admin2",
  3. "description": "dcat admin v2 ",
  4. "type": "library",
  5. "keywords": [
  6. "dcat",
  7. "laravel",
  8. "admin",
  9. "grid",
  10. "form",
  11. "laravel admin"
  12. ],
  13. "homepage": "https://github.com/dongasai/dcat-admin2",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "jqh",
  18. "email": "841324345@qq.com"
  19. },
  20. {
  21. "name": "dongasai",
  22. "email": "1514582970@qq.com"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=8.2.0",
  27. "laravel/framework": "~12.0",
  28. "spatie/eloquent-sortable": "*",
  29. "doctrine/dbal": "*"
  30. },
  31. "require-dev": {
  32. "laravel/dusk": "~5.9|~6|~7.0|~8.0",
  33. "phpstan/phpstan": "^0.12.0|~1.0",
  34. "phpunit/phpunit": "^7.5|~9|~10|~11",
  35. "fakerphp/faker": "^1.23",
  36. "mockery/mockery": "^1.6"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Dcat\\Admin\\": "src/"
  41. },
  42. "files": [
  43. "src/Support/helpers.php"
  44. ]
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Dcat\\Admin\\Tests\\": "tests/"
  49. }
  50. },
  51. "scripts": {
  52. "phpstan": "vendor/bin/phpstan analyse",
  53. "test": "vendor/bin/phpunit"
  54. },
  55. "extra": {
  56. "laravel": {
  57. "providers": [
  58. "Dcat\\Admin\\AdminServiceProvider"
  59. ]
  60. }
  61. }
  62. }