composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "dongasai/laravel-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. "require": {
  22. "php": ">=7.1.0",
  23. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  24. "spatie/eloquent-sortable": "3.*|4.*",
  25. "doctrine/dbal": "^2.6|^3.0|^4.0",
  26. "dcat/easy-excel": "*"
  27. },
  28. "require-dev": {
  29. "laravel/dusk": "~5.9|~6|~7.0|~8.0",
  30. "phpstan/phpstan": "^0.12.0|~1.0",
  31. "phpunit/phpunit": "^7.5|~9|~10|~11",
  32. "fakerphp/faker": "^1.23",
  33. "mockery/mockery": "^1.6"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Dcat\\Admin\\": "src/"
  38. },
  39. "files": [
  40. "src/Support/helpers.php"
  41. ]
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Dcat\\Admin\\Tests\\": "tests/"
  46. }
  47. },
  48. "scripts": {
  49. "phpstan": "vendor/bin/phpstan analyse",
  50. "test": "vendor/bin/phpunit"
  51. },
  52. "extra": {
  53. "laravel": {
  54. "providers": [
  55. "Dcat\\Admin\\AdminServiceProvider"
  56. ]
  57. }
  58. }
  59. }