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.

55 lines
1.5 KiB

4 years ago
3 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
  1. {
  2. "name": "laravel-zero/laravel-zero",
  3. "description": "The Laravel Zero Framework.",
  4. "keywords": ["framework", "laravel", "laravel zero", "console", "cli"],
  5. "homepage": "https://laravel-zero.com",
  6. "type": "project",
  7. "license": "MIT",
  8. "support": {
  9. "issues": "https://github.com/laravel-zero/laravel-zero/issues",
  10. "source": "https://github.com/laravel-zero/laravel-zero"
  11. },
  12. "authors": [
  13. {
  14. "name": "Nuno Maduro",
  15. "email": "enunomaduro@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.2.5",
  20. "guzzlehttp/guzzle": "^6.3.1",
  21. "illuminate/database": "^7.0",
  22. "illuminate/http": "^7.0",
  23. "illuminate/log": "^7.0",
  24. "laravel-zero/framework": "^7.0",
  25. "nunomaduro/laravel-console-menu": "^3.0",
  26. "ralouphie/mimey": "^2.1"
  27. },
  28. "require-dev": {
  29. "fzaninotto/faker": "^1.4",
  30. "mockery/mockery": "^1.3.1",
  31. "phpunit/phpunit": "^8.5"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "App\\": "app/",
  36. "CustomHandlers\\": "resources/CustomHandlers/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Tests\\": "tests/"
  42. }
  43. },
  44. "config": {
  45. "preferred-install": "dist",
  46. "sort-packages": true,
  47. "optimize-autoloader": true,
  48. "platform": {
  49. "php": "7.4.18"
  50. }
  51. },
  52. "minimum-stability": "dev",
  53. "prefer-stable": true,
  54. "bin": ["super-hog"]
  55. }