composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "dcat/laravel-admin",
  3. "description": "dcat admin",
  4. "type": "library",
  5. "keywords": ["dcat", "laravel", "admin", "grid", "form"],
  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",
  18. "doctrine/dbal": "2.*"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~6.0",
  22. "laravel/laravel": "~5.5",
  23. "symfony/css-selector": "~3.1",
  24. "fzaninotto/faker": "~1.4",
  25. "laravel/browser-kit-testing": "^2.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Dcat\\Admin\\": "src/"
  30. },
  31. "files": [
  32. "src/Support/helpers.php"
  33. ]
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Tests\\Models\\": "tests/models",
  38. "Tests\\Controllers\\": "tests/controllers"
  39. },
  40. "classmap": [
  41. "tests/TestCase.php"
  42. ]
  43. },
  44. "scripts": {
  45. "test": "./vendor/bin/phpunit"
  46. },
  47. "suggest": {
  48. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  49. "spatie/eloquent-sortable": "Required to built orderable gird."
  50. },
  51. "extra": {
  52. "laravel": {
  53. "providers": [
  54. "Dcat\\Admin\\AdminServiceProvider"
  55. ]
  56. }
  57. }
  58. }