PHP ARTISAN Meaning in Japanese - translations and usage examples

php artisan

Examples of using Php artisan in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
See php artisan list for more details.
詳細は、phpartisanlistで確認してください。
This can be done using the php artisan down command.
Phpartisandownコマンドにより切り替えられます。
The new php artisan tail command utilizes the new SSH component.
新しいphpartisantailコマンドは、この新SSHコンポーネントを活用しています。
You may create the link using the php artisan storage: link command.
リンクは、phpartisanstorage:linkコマンドを使い生成できます。
At first[ php artisan make: auth] and run crud-d-scaffold.
最初に[phpartisanmake:auth]してから、crud-d-scaffoldを実行してください。
If you are still using an Mcrypt based cipher in your config/app. php configuration file, you should update the cipher to AES-256-CBC and set your key to a random 32 byte string whichmay be securely generated using php artisan key: generate.
Mcryptベースのcipherをまだ使用している場合は、config/app.php設定ファイルで、cipherをAES-256-CBCに更新し、phpartisankey:generateで生成できるセキュアな32バイトのランダム文字列をキーとして設定してください。
You may remove php artisan optimize from the scripts within your composer. json file.
Jsonファイルのscripts項目から、phpartisanoptimizeを取り除いてください。
When the workbench directory exists, Laravel will intelligently scan it for packages, loading their Composer autoload files when the application starts! If you need to regenerate your package's autoload files,you may use the php artisan dump-autoload command.
Workbenchディレクトリーが存在すると、Laravelはパッケージを賢くスキャンし、アプリケーションがスタートした時点でComposerのオートロードファイルをロードします!もしパッケージのオートロードファイルを再生成する必要があるときは、phpartisandump-autoloadコマンドを使ってください。
The php artisan tinker command now utilizes the Boris REPL if your system supports it.
Phpartisantinkerコマンドは、システムがサポートしている場合、BorisREPLを活用します。
What are differences between“php artisan dump-autoload” and“composer dump-autoload”.
Phpartisandump-autoload"と"composerdump-autoload"の違いは何ですか?
Php artisan make: test UserTest// Create a test in the Unit directory… php artisan make: test UserTest--unit Once the test has been generated, you may define test methods as you normally would using PHPUnit.
Featureディレクトリにテストを生成するphpartisanmake:testUserTest//Unitディレクトリにテストを生成するphpartisanmake:testUserTest--unitテストを生成したら、PHPUnitを使用するときと同じように、テストメソッドを定義してください。
As mentioned in the previous section,the laravel/ui package's php artisan ui vue--auth command will create all of the views you need for authentication and place them in the resources/views/auth directory.
前のセクションで説明したように、laravel/uiパッケージのphpartisanuivue--authコマンドで、認証に必要なすべてのビューがresources/views/authディレクトリに生成されます。
When you run the client command, Passport will prompt you for more information about your client and will provide you with a client ID andsecret: php artisan passport: client JSON API Since your users will not be able to utilize the client command, Passport provides a JSON API that you may use to create clients.
Clientコマンドを実行すると、Passportはクライアントに関する情報の入力を促し、クライアントIDとシークレットを表示します。phpartisanpassport:clientJSONAPI皆さんのアプリのユーザーはclientコマンドを使用できないわけですから、Passportはクライアント作成のJSONAPIを提供しています。
Therefore, you may remove php artisan optimize from the scripts within your composer. json file.
そのため、composer.jsonファイルのscripts項目から、phpartisanoptimizeを取り除いてください。
The dusk command accepts any argument thatis also accepted by the phpunit command: php artisan dusk Using Other Browsers By default, Dusk uses Google Chrome and a standalone ChromeDriver installation to run your browser tests.
Duskコマンドには、phpunitコマンドが受け付ける引数を全て指定できます。phpartisandusk他ブラウザの使用デフォルトのDuskは、GoogleChromeとスタンドアローンのChromeDriverをブラウザテスト実行に使用します。
This command effectively re-creates your entire database: php artisan migrate: refresh php artisan migrate: refresh--seed Writing Migrations Creating Tables To create a new database table, use the create method on the Schema facade.
このコマンドはデータベース全体を作り直すために便利です。phpartisanmigrate:refreshphpartisanmigrate:refresh--seedマイグレーション記述テーブル作成新しいデータベーステーブルを作成するには、Schemaファサードのcreateメソッドを使用します。
On any fresh Laravel application,you may use the preset command with the react option: php artisan preset react This single command will remove the Vue scaffolding and replace it with React scaffolding, including an example component.
真新しいLaravelアプリケーションで、reactオプションを付け、presetコマンドを使用してください。phpartisanpresetreactこのコマンド一つで、Vueのスカフォールドを削除し、サンプルコンポーネントを含んだReactのスカフォールドを設置します。
To view a help screen,simply precede the name of the command with help: php artisan help migrate Writing Commands In addition to the commands provided with Artisan, you may also build your own custom commands.
ヘルプを表示するにはhelpに続いてコマンド名を入力してください。phpartisanhelpmigrateコマンド記述Artisanに用意されているコマンドに加え、独自のカスタムコマンドも構築できます。
Additionally, you maypublish Passport's configuration file using php artisan vendor: publish--tag=passport-config, which will then provide the option to load the encryption keys from your environment variables:.
さらに、phpartisanvendor:publish--tag=passport-configにより、Passportの設定ファイルを公開することもできます。これにより、環境変数から暗号化キーをロードするためのオプションを提供しています。
If you are using the Homestead virtual machine,you should run this command from within your VM: php artisan migrate If you receive a"class not found" error when running migrations, try running the composer dump-autoload command and re-issuing the migrate command.
Homestead仮想マシーンを使用している場合は、VMの中でこのコマンドを実行してください。phpartisanmigrateマイグレーション中に"classnotfound"エラーが出る場合は、composerdump-autoloadを実行し、その後に再実行してください。
Once the migration has been created,you may migrate your database using the migrate command: php artisan queue: table php artisan migrate Redis In order to use the redis queue driver, you should configure a Redis database connection in your config/database. php configuration file.
マイグレーションが生成されたら、migrateコマンドでデータベースをマイグレートしてください。phpartisanqueue:tablephpartisanmigrateRedisredisキュードライバーを使用するには、config/database.php設定ファイルでRedisのデータベースを設定する必要があります。
Any jobs that Horizon is currently processing will be completed andthen Horizon will exit: php artisan horizon: terminate Deploying Horizon If you are deploying Horizon to a live server, you should configure a process monitor to monitor the php artisan horizon command and restart it if it quits unexpectedly.
現在処理中のジョブが完了した後に、Horizonは停止します。phpartisanhorizon:terminateHorizonのデプロイHorizonを実働サーバにデプロイする場合、phpartisanhorizonコマンドをプロセスモニタで監視し、予期せず終了した場合には再起動をかけるように設定する必要があります。
If you have already run the passport: install command,you do not need to run this command: php artisan passport: client--personal Managing Personal Access Tokens Once you have created a personal access client, you may issue tokens for a given user using the createToken method on the User model instance.
Passport:installコマンドを実行済みの場合、このコマンドを実行する必要はありません。phpartisanpassport:client--personalパーソナルアクセストークンの管理パーソナルアクセスクライアントを作成したら、UserモデルインスタンスのcreateTokenメソッドを使用し、指定ユーザに対しトークンを発行することができるようになります。
Since you typically will need to overwrite the assets every time the package is updated,you may use the--force flag: php artisan vendor: publish--tag=public--force If you would like to make sure your public assets are always up-to-date, you can add this command to the post-update-cmd list in your composer. json file.
通常、パッケージがアップデートされる度に、アセットを上書きする必要があります。--forceフラッグが使用できます。phpartisanvendor:publish--tag=public--force公開アセットをいつも確実にアップデートしたい場合は、このコマンドをcomposer.jsonファイルのpost-update-cmdリストへ追加します。
If you have already run the passport: install command,you do not need to run this command: php artisan passport: client--password Requesting Tokens Once you have created a password grant client, you may request an access token by issuing a POST request to the/oauth/token route with the user's email address and password.
すでにpassport:installコマンドを実行済みの場合、このコマンドを実行する必要はありません。phpartisanpassport:client--passwordトークンのリクエストパスワードグラントクライアントを作成したら、ユーザのメールアドレスとパスワードを指定し、/oauth/tokenルートへPOSTリクエストを発行することで、アクセストークンをリクエストできます。
You may use the notifications:table command to generate a migration with the proper table schema: php artisan notifications: table php artisan migrate Formatting Database Notifications If a notification supports being stored in a database table, you should define a toDatabase or toArray method on the notification class.
実際のテーブルスキーマのマイグレーションを生成するために、notifications:tableを使用してください。phpartisannotifications:tablephpartisanmigrateデータベース通知のフォーマット通知でデータベーステーブルへの保存をサポートする場合、通知クラスにtoDatabaseかtoArrayメソッドを定義する必要があります。
Optimizing Configuration Loading When deploying your application to production, you should make sure that you run the config:cache Artisan command during your deployment process: php artisan config: cache This command will combine all of Laravel's configuration files into a single, cached file, which greatly reduces the number of trips the framework must make to the filesystem when loading your configuration values.
設定ロードの最適化アプリケーションをプロダクションへデプロイする場合、デプロイプロセスの中で、確実にconfig:cacheArtisanコマンドを実行してください。phpartisanconfig:cacheこのコマンドは、Laravelの全設定ファイルをキャッシュされる一つのファイルへまとめるため、設定値をロードする場合に、フレームワークがファイルシステムを数多くアクセスする手間を大いに減らします。
Results: 27, Time: 0.0277

Word-for-word translation

Top dictionary queries

English - Japanese