for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ben182\AutoTranslate;
use Themsaid\Langman\Manager;
use Illuminate\Support\ServiceProvider;
use Ben182\AutoTranslate\Commands\AllCommand;
use Ben182\AutoTranslate\Commands\MissingCommand;
use Ben182\AutoTranslate\Translators\TranslatorInterface;
class AutoTranslateServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*/
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/config.php' => config_path('auto-translate.php'),
], 'config');
// Registering package commands.
$this->commands([
AllCommand::class,
MissingCommand::class,
]);
}
* Register the application services.
public function register()
// Automatically apply the package configuration
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'auto-translate');
$this->app->bind(TranslatorInterface::class, config('auto-translate.translator'));
// Register the main class to use with the facade
$this->app->singleton('auto-translate', function () {
config([
'langman.path' => config('auto-translate.path'),
return new AutoTranslate(app(Manager::class), app(TranslatorInterface::class));
});