OpenSource CLI-App to install and handle stuff related to Web-Server
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.

54 lines
1.4 KiB

4 years ago
4 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. "illuminate/log": "^7.0",
  21. "jenssegers/blade": "^1.3",
  22. "laminas/laminas-text": "^2.7",
  23. "laravel-zero/framework": "^7.0",
  24. "nunomaduro/laravel-console-menu": "^3.0",
  25. "respect/validation": "^2.0"
  26. },
  27. "require-dev": {
  28. "mockery/mockery": "^1.3.1",
  29. "phpunit/phpunit": "^8.5"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "App\\": "app/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Tests\\": "tests/"
  39. }
  40. },
  41. "config": {
  42. "preferred-install": "dist",
  43. "sort-packages": true,
  44. "optimize-autoloader": true
  45. },
  46. "scripts": {
  47. "post-create-project-cmd": [
  48. "@php application app:rename"
  49. ]
  50. },
  51. "minimum-stability": "dev",
  52. "prefer-stable": true,
  53. "bin": ["application"]
  54. }