composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "barryvdh/laravel-ide-helper": "^2.3",
  10. "dingo/api": "1.0.x@dev",
  11. "doctrine/dbal": "^2.5",
  12. "ignited/laravel-omnipay": "2.*",
  13. "jpush/jpush": "^3.5",
  14. "laravel/framework": "5.4.*",
  15. "laravel/passport": "^2.0",
  16. "laravel/tinker": "~1.0",
  17. "league/oauth2-server": "5.1.4",
  18. "lokielse/omnipay-alipay": "^2.0",
  19. "lokielse/omnipay-wechatpay": "^1.0",
  20. "orangehill/iseed": "^2.4",
  21. "php-ffmpeg/php-ffmpeg": "^0.9.5",
  22. "simplesoftwareio/simple-qrcode": "1.5.*"
  23. },
  24. "require-dev": {
  25. "fzaninotto/faker": "~1.4",
  26. "mockery/mockery": "0.9.*",
  27. "phpunit/phpunit": "~5.7"
  28. },
  29. "autoload": {
  30. "classmap": [
  31. "database"
  32. ],
  33. "psr-4": {
  34. "App\\": "app/"
  35. },
  36. "files": [
  37. "app/Helper/constants.inc.php",
  38. "app/Helper/functions.inc.php"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Tests\\": "tests/"
  44. }
  45. },
  46. "scripts": {
  47. "post-root-package-install": [
  48. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  49. ],
  50. "post-create-project-cmd": [
  51. "php artisan key:generate"
  52. ],
  53. "post-install-cmd": [
  54. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  55. "php artisan optimize"
  56. ],
  57. "post-update-cmd": [
  58. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  59. "php artisan optimize"
  60. ]
  61. },
  62. "config": {
  63. "preferred-install": "dist",
  64. "sort-packages": true
  65. },
  66. "repositories": {
  67. "packagist": {
  68. "type": "composer",
  69. "url": "https://packagist.phpcomposer.com"
  70. }
  71. }
  72. }