composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "symfony/dom-crawler": "~3.1|~4.0",
  17. "laravel/framework": "~5.5|~6.0|~7.0",
  18. "doctrine/dbal": "2.*",
  19. "spatie/eloquent-sortable": "3.*"
  20. },
  21. "require-dev": {
  22. "laravel/dusk": "~5.9",
  23. "friendsofphp/php-cs-fixer": "^2.15",
  24. "laravel/laravel": "~5.5|~6",
  25. "phpstan/phpstan": "^0.12.0",
  26. "phpunit/phpunit": "^7.5",
  27. "fzaninotto/faker": "^1.4",
  28. "mockery/mockery": "^1.0",
  29. "matt-allan/laravel-code-style": "^0.3.0"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Dcat\\Admin\\": "src/"
  34. },
  35. "files": [
  36. "src/Support/helpers.php"
  37. ]
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Dcat\\Admin\\Tests\\": "tests/"
  42. }
  43. },
  44. "scripts": {
  45. "fix-style": "vendor/bin/php-cs-fixer fix",
  46. "check-style": "vendor/bin/php-cs-fixer fix --dry-run --diff",
  47. "phpstan": "vendor/bin/phpstan analyse",
  48. "test": "vendor/bin/phpunit"
  49. },
  50. "extra": {
  51. "laravel": {
  52. "providers": [
  53. "Dcat\\Admin\\AdminServiceProvider"
  54. ]
  55. }
  56. }
  57. }