You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Adding a new config to disable SSL certificate integrity check by @MuriloChianfa in https://github.com/vormkracht10/laravel-seo-scanner/pull/18
104
-
- Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in https://github.com/vormkracht10/laravel-seo-scanner/pull/20
105
-
-[Feature] Laravel 10 compatibility by @Baspa in https://github.com/vormkracht10/laravel-seo-scanner/pull/24
103
+
- Adding a new config to disable SSL certificate integrity check by @MuriloChianfa in https://github.com/backstagephp/laravel-seo-scanner/pull/18
104
+
- Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in https://github.com/backstagephp/laravel-seo-scanner/pull/20
105
+
-[Feature] Laravel 10 compatibility by @Baspa in https://github.com/backstagephp/laravel-seo-scanner/pull/24
106
106
107
107
### New Contributors
108
108
109
-
-@MuriloChianfa made their first contribution in https://github.com/vormkracht10/laravel-seo-scanner/pull/18
109
+
-@MuriloChianfa made their first contribution in https://github.com/backstagephp/laravel-seo-scanner/pull/18
- Fix Windows tests by removing SSL validation when using `curl()` by @Baspa in https://github.com/vormkracht10/laravel-seo-scanner/pull/16
118
-
- Check if a relative url is used when performing broken link checks by @Baspa in https://github.com/vormkracht10/laravel-seo-scanner/pull/17
117
+
- Fix Windows tests by removing SSL validation when using `curl()` by @Baspa in https://github.com/backstagephp/laravel-seo-scanner/pull/16
118
+
- Check if a relative url is used when performing broken link checks by @Baspa in https://github.com/backstagephp/laravel-seo-scanner/pull/17

7
-

8
-
[](https://packagist.org/packages/vormkracht10/laravel-seo-scanner)

7
+

8
+
[](https://packagist.org/packages/backstagephp/laravel-seo-scanner)
9
9
10
-
## Nice to meet you, we're [Vormkracht10](https://vormkracht10.nl)
10
+
## Nice to meet you, we're [Backstage](https://backstagephp.com)
11
11
12
12
Hi! We are a web development agency from Nijmegen in the Netherlands and we use Laravel for everything: advanced websites with a lot of bells and whitles and large web applications.
13
13
@@ -57,7 +57,7 @@ Easily configure which routes to scan, exclude or include specific checks or eve
57
57
You can install the package via composer:
58
58
59
59
```bash
60
-
composer require vormkracht10/laravel-seo-scanner
60
+
composer require backstage/laravel-seo-scanner
61
61
```
62
62
63
63
If you want to scan pages that are rendered using Javascript, for example Vue or React, you need to install Puppeteer. You can install it using the following command:
@@ -85,7 +85,7 @@ php artisan migrate
85
85
php artisan vendor:publish --tag="seo-config"
86
86
```
87
87
88
-
Click here to see the [config file](https://github.com/vormkracht10/laravel-seo-scanner/blob/too-long-sentences-check/config/seo.php).
88
+
Click here to see the [config file](https://github.com/backstagephp/laravel-seo-scanner/blob/too-long-sentences-check/config/seo.php).
89
89
90
90
## Available checks
91
91
@@ -166,7 +166,7 @@ php artisan seo:scan
166
166
If you want to queue the scan and trigger it manually you can dispatch the 'Scan' job:
167
167
168
168
```php
169
-
use Vormkracht10\LaravelSeo\Jobs\Scan;
169
+
use Backstage\LaravelSeo\Jobs\Scan;
170
170
171
171
Scan::dispatch();
172
172
```
@@ -176,7 +176,7 @@ Scan::dispatch();
176
176
Want to get the score of a specific url? Run the following command:
177
177
178
178
```bash
179
-
php artisan seo:scan-url https://vormkracht10.nl
179
+
php artisan seo:scan-url https://backstagephp.com
180
180
```
181
181
182
182
> Note: The command will only check the SEO score of the url and output the score in the CLI. It will not save the score to the database.
If you have an SPA application, you can enable javascript rendering. This will use a headless browser to render the content. To enable javascript rendering, set the `javascript` option to `true` in the config file. You can also enable javascript rendering for a single route by adding the `--javascript` option to the command:
> Note: This command will use Puppeteer to render the page. Make sure that you have Puppeteer installed on your system. You can install Puppeteer by running the following command: `npm install puppeteer`. **At this moment it's only available when scanning single routes.**
@@ -216,8 +216,8 @@ For example, you have a `BlogPost` model which has a page for each content item:
216
216
217
217
```php
218
218
219
-
use Vormkracht10\Seo\Traits\HasSeoScore;
220
-
use Vormkracht10\Seo\SeoInterface;
219
+
use Backstage\Seo\Traits\HasSeoScore;
220
+
use Backstage\Seo\SeoInterface;
221
221
222
222
class BlogPost extends Model implements SeoInterface
223
223
{
@@ -233,7 +233,7 @@ class BlogPost extends Model implements SeoInterface
233
233
234
234
public function getUrlAttribute(): string
235
235
{
236
-
return 'https://vormkracht10.nl/' . $this->slug;
236
+
return 'https://backstagephp.com/' . $this->slug;
237
237
}
238
238
}
239
239
```
@@ -316,7 +316,7 @@ protected $listen = [
316
316
You can retrieve the scans from the database by using the `SeoScan` model. This model is used to save the scans to the database. You can use the `SeoScan` model to retrieve the scans from the database. For example:
317
317
318
318
```php
319
-
use Vormkracht10\Seo\Models\SeoScan;
319
+
use Backstage\Seo\Models\SeoScan;
320
320
321
321
// Get the latest scan
322
322
$scan = SeoScan::latest()->first();
@@ -333,7 +333,7 @@ $totalPages = $scan->pages;
333
333
You can retrieve the scores from the database by using the `SeoScore` model. This model is used to save the scores to the database. You can use the `SeoScore` model to retrieve the scores from the database. For example:
0 commit comments