generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub funding and issue template URLs, update package name in…
… README, update package name in license, update package name in composer.json, update package name in PHPUnit configuration, update package name in robots.txt controller, update package name in robots.txt facade, update package name in robots.txt service provider, update package name in robots.txt service, update package name in robots.txt clear command, update package name in robots.txt disk test, update package name in robots.txt environment test, update package name in robots.txt sitemap test, update package name in delete public robots.txt test, update package name in pest test helper.
- Loading branch information
1 parent
d4480a5
commit 261d70b
Showing
34 changed files
with
801 additions
and
617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github: :vendor_name | ||
github: Fuelviews |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a question | ||
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a | ||
url: https://github.com/Fuelviews/laravel-sitemap/discussions/new?category=q-a | ||
about: Ask the community for help | ||
- name: Request a feature | ||
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas | ||
url: https://github.com/Fuelviews/laravel-sitemap/discussions/new?category=ideas | ||
about: Share ideas for new features | ||
- name: Report a security issue | ||
url: https://github.com/:vendor_name/:package_name/security/policy | ||
url: https://github.com/Fuelviews/laravel-sitemap/security/policy | ||
about: Learn how to notify us for sensitive bugs |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Changelog | ||
|
||
All notable changes to `:package_name` will be documented in this file. | ||
All notable changes to `laravel-robots-txt` will be documented in this file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
/** | ||
* Configuration File: robots-txt.php | ||
* | ||
* This file contains configuration options for the robots.txt generation. | ||
*/ | ||
|
||
return [ | ||
/** | ||
* The disk where the robots.txt file will be saved | ||
*/ | ||
'disk' => 'public', | ||
|
||
/** | ||
* The domain pattern to deny access in development environment | ||
*/ | ||
'deny_development_url' => 'development.', | ||
|
||
/** | ||
* User agent rules for different paths | ||
*/ | ||
'user_agents' => [ | ||
'*' => [ | ||
'Allow' => [ | ||
'/' | ||
], | ||
'Disallow' => [ | ||
'/admin', | ||
'/dashboard', | ||
], | ||
], | ||
], | ||
|
||
/** | ||
* List of sitemaps to include in robots.txt | ||
*/ | ||
'sitemap' => [ | ||
'sitemap.xml', | ||
], | ||
]; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.