You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "php": ">=5.6.4",
  9. "intervention/image": "^2.3",
  10. "laravel/framework": "5.4.*",
  11. "laravel/tinker": "~1.0",
  12. "maatwebsite/excel": "~2.1.0",
  13. "overtrue/laravel-wechat": "~3.1"
  14. },
  15. "require-dev": {
  16. "fzaninotto/faker": "~1.4",
  17. "mockery/mockery": "0.9.*",
  18. "phpunit/phpunit": "~5.7"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "database"
  23. ],
  24. "psr-4": {
  25. "App\\": "app/"
  26. },
  27. "files": [
  28. "app/Common/function.php"
  29. ]
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Tests\\": "tests/"
  34. }
  35. },
  36. "scripts": {
  37. "post-root-package-install": [
  38. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  39. ],
  40. "post-create-project-cmd": [
  41. "php artisan key:generate"
  42. ],
  43. "post-install-cmd": [
  44. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  45. "php artisan optimize"
  46. ],
  47. "post-update-cmd": [
  48. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  49. "php artisan optimize"
  50. ]
  51. },
  52. "config": {
  53. "preferred-install": "dist",
  54. "sort-packages": true,
  55. "optimize-autoloader": true
  56. }
  57. }