Skip to content

Commit

Permalink
Development update deps (#1)
Browse files Browse the repository at this point in the history
* Added dependencies for illuminate/support, illuminate/routing, and illuminate/http in composer.json. Removed the autoload path for Fuelviews\RobotsTxt\Database\Factories\ in composer.json.

* Fix styling

---------

Co-authored-by: thejmitchener <[email protected]>
  • Loading branch information
thejmitchener and thejmitchener authored Mar 20, 2024
1 parent caf6e46 commit e6cd5df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
],
"require": {
"php": "^8.2",
"spatie/laravel-package-tools": "^1.14.0"
"spatie/laravel-package-tools": "^1.14.0",
"illuminate/support": "^10.0.0",
"illuminate/routing": "^10.0.0",
"illuminate/http": "^10.0.0"
},
"require-dev": {
"laravel/pint": "^1.0",
Expand All @@ -31,8 +34,7 @@
},
"autoload": {
"psr-4": {
"Fuelviews\\RobotsTxt\\": "src/",
"Fuelviews\\RobotsTxt\\Database\\Factories\\": "database/factories/"
"Fuelviews\\RobotsTxt\\": "src/"
}
},
"autoload-dev": {
Expand Down
3 changes: 0 additions & 3 deletions src/Http/Controllers/RobotsTxtController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
*/
class RobotsTxtController extends BaseController
{
/**
* The RobotsTxtService instance.
*/
protected RobotsTxt $robotsTxt;

/**
Expand Down

0 comments on commit e6cd5df

Please sign in to comment.