Package Data | |
---|---|
Maintainer Username: | spatie |
Maintainer Contact: | sebastian@spatie.be (Sebastian De Deyne) |
Package Create Date: | 2019-03-18 |
Package Last Update: | 2024-09-23 |
Home Page: | https://spatie.be/open-source |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-24 15:03:25 |
Package Statistics | |
---|---|
Total Downloads: | 68,792 |
Monthly Downloads: | 1,593 |
Daily Downloads: | 30 |
Total Stars: | 551 |
Total Watchers: | 16 |
Total Forks: | 56 |
Total Open Issues: | 1 |
$ php artisan export
Exporting site...
Files were saved to disk `export`
Build your blog or site with Laravel like with the tools you're used to having and export it to be hosted statically.
Laravel Export will scan your app and create an HTML page from every URL it crawls. The entire public
directory also gets added to the bundle so your assets are in place too.
A few example use cases for this package:
Build your own blog or site in Laravel with all the tools you're used to using. Export a static version and just upload it anywhere for hosting, no need for managing a full-blown server anymore.
Use something like Nova, Wink, or any other admin panel to manage your site locally or on a remote server, then publish it to a service like Netlify. This gives you all benefits of a static site (speed, simple hosting, scalability) while still having a dynamic backend of some sort.
You can install the package via composer:
composer require spatie/laravel-export
After the package is installed, you can optionally publish the config file.
php artisan vendor:publish ...
Laravel Export doesn't require configuration to get started, but there are a few things you can tweak to your needs.
// config/export.php
return [
'disk' => 'export',
];
This means you can also use other filesystem drivers, so you could export your site straight to something like S3.
With the default configuration, Laravel Export will crawl your site and export every page to a static site. If you'd like to disable this behaviour, disable the crawl
option.
return [
'crawl' => true,
];
paths
is an array of URL paths that will be exported to HTML. Use this to manually determine which pages should be exported.
return [
'paths' => [
'/',
'/rss.xml',
],
];
include_files
allows you to specify files and folders relative to the application root that should be added to the export. By default, we'll include the entire public
folder.
return [
'include_files' => [
'public' => '',
],
];
exclude_file_patterns
will check all source paths of included files, and exclude them if they match a pattern from in exclude_file_patterns
. By default, all PHP files will be excluded, mainly to stop index.php
from appearing in your export.
return [
'exclude_file_patterns' => [
'/\.php$/',
],
];
All configuration options that affect the exports contents are also exposed in the Exporter
class. You can inject this class to modify the export settings through code.
use Illuminate\Support\ServiceProvider;
use Spatie\Export\Exporter;
class AppServiceProvider extends ServiceProvider
{
public function boot(Exporter $exporter)
{
$exporter->crawl(false);
$exporter->paths(['', 'about', 'contact', 'posts']);
$exporter->paths(Post::all()->pluck('slug'));
}
}
By default, Laravel Export will save the static bundle in a dist
folder in your application root. If you want to store the site in a different folder, configure a new disk in config/filesystem.php
.
// config/filesystem.php
return [
'disks' => [
//
'export' => [
'driver' => 'local',
'root' => base_path('out'),
],
],
];
before
and after
hooks allow you to do things before or after an export. Hooks can contain any shell command.
The default configuration doesn't have any hooks configured, but shows two examples.
With this before
hook, we'll use Yarn to build our assets before every export:
return [
'before' => [
'assets' => '/usr/local/bin/yarn production',
],
];
With this after
hook, we'll deploy the static bundle to Netlify with their CLI tool after the export.
return [
'after' => [
'deploy' => '/usr/local/bin/netlify deploy --prod',
],
];
If you want to run an export without certain hooks, use --skip-{hook}
flags.
php artisan export --skip-deploy
To build a bundle, run the export
command:
php artisan export
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email freek@spatie.be instead of using the issue tracker.
You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
We publish all received postcards on our company website.
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
Does your business depend on our contributions? Reach out and support us on Patreon. All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.
The MIT License (MIT). Please see License File for more information.