help.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "Application Configuration": {
  3. "key:generate": {
  4. "description": "Generate a secure application key.",
  5. "command": "php artisan key:generate"
  6. }
  7. },
  8. "Database Tables": {
  9. "session:table": {
  10. "description": "Generate a migration for the sessions database table.",
  11. "command": "php artisan session:table"
  12. }
  13. },
  14. "Migrations": {
  15. "migrate:install": {
  16. "description": "Create the Laravel migration table.",
  17. "command": "php artisan migrate:install"
  18. },
  19. "migrate:make": {
  20. "description": "Create a migration.",
  21. "command": "php artisan migrate:make create_users_table"
  22. },
  23. "migrate": {
  24. "description": "Run outstanding migrations.",
  25. "command": "php artisan migrate"
  26. },
  27. "migrate:rollback": {
  28. "description": "Roll back the most recent migration.",
  29. "command": "php artisan migrate:rollback"
  30. },
  31. "migrate:reset": {
  32. "description": "Roll back all migrations.",
  33. "command": "php artisan migrate:reset"
  34. }
  35. },
  36. "Bundles": {
  37. "bundle:install": {
  38. "description": "Install a bundle.",
  39. "command": "php artisan bundle:install swiftmailer"
  40. },
  41. "bundle:uninstall": {
  42. "description": "Uninstall a bundle, delete its public, rollback its migrations.",
  43. "command": "php artisan bundle:uninstall swiftmailer"
  44. },
  45. "bundle:upgrade": {
  46. "description": "Upgrade a bundle.",
  47. "command": "php artisan bundle:upgrade swiftmailer"
  48. },
  49. "bundle:publish": {
  50. "description": "Publish all bundles' assets.",
  51. "command": "php artisan bundle:publish"
  52. },
  53. "bundle:unpublish": {
  54. "description": "Delete all bundles' assets from the public directory.",
  55. "command": "php artisan bundle:unpublish"
  56. }
  57. },
  58. "Unit Testing": {
  59. "test": {
  60. "description": "Run the application's tests.",
  61. "command": "php artisan test"
  62. }
  63. },
  64. "Routing": {
  65. "route:call": {
  66. "description": "Call a route.",
  67. "command": "php artisan route:call get api/user/1"
  68. }
  69. },
  70. "Application Keys": {
  71. "key:generate": {
  72. "description": "Generate an application key.",
  73. "command": "php artisan key:generade"
  74. }
  75. },
  76. "CLI Options": {
  77. "--env=": {
  78. "description": "Set the Laravel environment.",
  79. "command": "php artisan task --env=local"
  80. },
  81. "--database=": {
  82. "description": "Set the default database connection.",
  83. "command": "php artisan task --database=mysql"
  84. }
  85. }
  86. }