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.

58 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
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. "jpush/jpush": "v3.5.*"
  15. },
  16. "require-dev": {
  17. "fzaninotto/faker": "~1.4",
  18. "mockery/mockery": "0.9.*",
  19. "phpunit/phpunit": "~5.7"
  20. },
  21. "autoload": {
  22. "classmap": [
  23. "database"
  24. ],
  25. "psr-4": {
  26. "App\\": "app/"
  27. },
  28. "files": [
  29. "app/Common/function.php"
  30. ]
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Tests\\": "tests/"
  35. }
  36. },
  37. "scripts": {
  38. "post-root-package-install": [
  39. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  40. ],
  41. "post-create-project-cmd": [
  42. "php artisan key:generate"
  43. ],
  44. "post-install-cmd": [
  45. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  46. "php artisan optimize"
  47. ],
  48. "post-update-cmd": [
  49. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  50. "php artisan optimize"
  51. ]
  52. },
  53. "config": {
  54. "preferred-install": "dist",
  55. "sort-packages": true,
  56. "optimize-autoloader": true
  57. }
  58. }