diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php deleted file mode 100644 index 761107c..0000000 --- a/database/factories/ModelFactory.php +++ /dev/null @@ -1,19 +0,0 @@ -id(); - - // add fields - - $table->timestamps(); - }); - } -}; diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 489fa4e..768d487 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -6,7 +6,6 @@ parameters: paths: - src - config - - database tmpDir: build/phpstan checkOctaneCompatibility: true checkModelProperties: true diff --git a/resources/views/.gitkeep b/resources/views/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/Commands/ReadabilityCommand.php b/src/Commands/ReadabilityCommand.php deleted file mode 100644 index 4e8e744..0000000 --- a/src/Commands/ReadabilityCommand.php +++ /dev/null @@ -1,19 +0,0 @@ -comment('All done'); - - return self::SUCCESS; - } -} diff --git a/src/ReadabilityServiceProvider.php b/src/ReadabilityServiceProvider.php index 6655eda..7d12120 100644 --- a/src/ReadabilityServiceProvider.php +++ b/src/ReadabilityServiceProvider.php @@ -4,7 +4,6 @@ use Spatie\LaravelPackageTools\Package; use Spatie\LaravelPackageTools\PackageServiceProvider; -use The3LabsTeam\Readability\Commands\ReadabilityCommand; class ReadabilityServiceProvider extends PackageServiceProvider { @@ -16,10 +15,6 @@ public function configurePackage(Package $package): void * More info: https://github.com/spatie/laravel-package-tools */ $package - ->name('laravel-readability') - ->hasConfigFile() - ->hasViews() - ->hasMigration('create_laravel-readability_table') - ->hasCommand(ReadabilityCommand::class); + ->name('laravel-readability'); } }