1

Lumen's Artisan の実行に問題があります。ほとんどのコマンドが欠落しています。

たとえば、次のように記述した場合php artisan routes、次のエラーが表示されます: Command "routes" is not defined.

以下は、php artisan と入力して得られる出力の例です。

Laravel Framework version Lumen (5.2.5) (Laravel Components 5.2.*)

Usage:
command [options] [arguments]

Options:
-h, --help            Display this help message
-q, --quiet           Do not output any message
-V, --version         Display this application version
  --ansi            Force ANSI output
  --no-ansi         Disable ANSI output
-n, --no-interaction  Do not ask any interactive question
  --env[=ENV]       The environment the command should run under.
-v|vv|vvv, --verbose  Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Available commands:
help              Displays help for a command
list              Lists commands
migrate           Run the database migrations
cache
cache:clear       Flush the application cache
db
db:seed           Seed the database with records
make
make:migration    Create a new migration file
migrate
migrate:install   Create the migration repository
migrate:refresh   Reset and re-run all migrations
migrate:reset     Rollback all database migrations
migrate:rollback  Rollback the last database migration
migrate:status    Show the status of each migration
queue
queue:failed      List all of the failed queue jobs
queue:flush       Flush all of the failed queue jobs
queue:forget      Delete a failed queue job
queue:listen      Listen to a given queue
queue:restart     Restart queue worker daemons after their current job
queue:retry       Retry a failed queue job
queue:work        Process the next job on a queue
schedule
schedule:run      Run the scheduled commands

これを修正する方法はありますか?

4

2 に答える 2

1

routeLumen はこのコマンドをネイティブにサポートしていません。ただし、Laravel では、次のことができます。

php artisan listすべてのコマンドを表示するために使用します。

使用しようとしているコマンドはphp artisan route:list

于 2016-03-18T09:37:13.280 に答える
0

Laravel を使用するか、手動でコマンドを作成するか、 Lumen Route Listのようなパッケージを使用する必要があります。

于 2016-03-18T10:02:13.567 に答える