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.

67 lines
1.8 KiB

8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
8 years ago
6 years ago
6 years ago
8 years ago
6 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. "laravel/framework": "5.4.*",
  10. "laravel/tinker": "~1.0",
  11. "predis/predis": "^1.1",
  12. "maatwebsite/excel": "~2.1.0",
  13. "simplesoftwareio/simple-qrcode": "~1",
  14. "intervention/image": "^2.3",
  15. "yansongda/pay": "^1.0",
  16. "overtrue/laravel-wechat": "~3.1",
  17. "jpush/jpush": "v3.5.*"
  18. },
  19. "require-dev": {
  20. "fzaninotto/faker": "~1.4",
  21. "mockery/mockery": "0.9.*",
  22. "phpunit/phpunit": "~5.7"
  23. },
  24. "autoload": {
  25. "classmap": [
  26. "database"
  27. ],
  28. "psr-4": {
  29. "App\\": "app/"
  30. },
  31. "files": [
  32. "app/Common/function.php"
  33. ]
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Tests\\": "tests/"
  38. }
  39. },
  40. "scripts": {
  41. "post-root-package-install": [
  42. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  43. ],
  44. "post-create-project-cmd": [
  45. "php artisan key:generate"
  46. ],
  47. "post-install-cmd": [
  48. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  49. "php artisan clear-compiled"
  50. ],
  51. "post-update-cmd": [
  52. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  53. "php artisan clear-compiled"
  54. ]
  55. },
  56. "config": {
  57. "preferred-install": "dist",
  58. "sort-packages": true,
  59. "optimize-autoloader": true
  60. },
  61. "repositories": {
  62. "packagist": {
  63. "type": "composer",
  64. "url": "https://mirrors.aliyun.com/composer/"
  65. }
  66. }
  67. }