composer.json 1.2 KB

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