Skip to content

Commit

Permalink
A little more clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Jan 4, 2024
1 parent 033e785 commit 0e7c21d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/template-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
# Rename files
git mv .idea/laravel-package-template.iml .idea/$KEBAB.iml
git mv config/config.php config/$KEBAB.php
git mv src/Support/LaravelPackageTemplateServiceProvider.php src/Support/${STUDLY}ServiceProvider.php
# Cleanup
rm -f .github/workflows/template-cleanup.yml
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Galahad, Inc.
Copyright (c) 2024 Galahad, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</a>
<a href="https://codeclimate.com/github/glhd/laravel-package-template/test_coverage" target="_blank">
<img
src="https://api.codeclimate.com/v1/badges/f597a6e8d9f968a55f03/test_coverage"
src="https://api.codeclimate.com/v1/badges/change-me/test_coverage"
alt="Coverage Status"
/>
</a>
Expand All @@ -33,9 +33,6 @@

# laravel-package-template

Please replace `glhd/laravel-package-template` with the package name in this file,
the change log, and the `composer.json` file before continuing.

## Installation

## Usage
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"extra": {
"laravel": {
"providers": [
"Glhd\\LaravelPackageTemplate\\Support\\PackageServiceProvider"
"Glhd\\LaravelPackageTemplate\\Support\\LaravelPackageTemplateServiceProvider"
]
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;

class PackageServiceProvider extends ServiceProvider
class LaravelPackageTemplateServiceProvider extends ServiceProvider
{
public function boot()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Glhd\LaravelPackageTemplate\Tests;

use Glhd\LaravelPackageTemplate\Support\PackageServiceProvider;
use Glhd\LaravelPackageTemplate\Support\LaravelPackageTemplateServiceProvider;
use Illuminate\Container\Container;
use Orchestra\Testbench\TestCase as Orchestra;

Expand All @@ -11,7 +11,7 @@ abstract class TestCase extends Orchestra
protected function getPackageProviders($app)
{
return [
PackageServiceProvider::class,
LaravelPackageTemplateServiceProvider::class,
];
}

Expand Down

0 comments on commit 0e7c21d

Please sign in to comment.