Download the PHP package codebar-ag/laravel-prerender without Composer

On this page you can find all versions of the php package codebar-ag/laravel-prerender. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-prerender

Latest Version on Packagist Total Downloads run-tests Check & fix styling

This package was developed to give you a quick start to integrate with the Prerender.io service in your Laravel application.

🙇 Credits

This package is a clone from jeroennoten/Laravel-Prerender with jeroennoten as the original author. CasperLaiTW provided Laravel 6,7 & 8 compatibility by an unmerged (14th September 2020) Pull-Request.

💡 What is Prerender.io?

The Prerender.io middleware will check each request to see if it's a from a crawler. If it is a request from a crawler, the middleware will send a request to Prerender.io for the static HTML of that page. If not, the request will continue on to your normal server routes. The crawler never knows that you are using Prerender.io since the response always goes through your server.

Google now recommends that you use Prerender.io in their Dynamic Rendering documentation!

🛠 Requirements

Package PHP Laravel Prerender.io access
main ^8.2 - ^8.3 11.x
v3.3.0 ^8.1 - ^8.3 10.x
v3.2.0 ^8.0 - ^8.2 9.x
v3.1.1 ^7.3 - ^8.1 8.x

⚙️ Installation

You can install the package via composer:

If you want to make use of the Prerender.io service, add the following to your .env file:

Or if you are using a self-hosted service, add the server address in the .env file.

That's it. Every GET-Request from a crawler will be prerendered.

✋ Disable the service

You can disable the service by adding the following to your .env file:

This may be useful for your local development environment.

✏️ How it works

  1. The middleware checks to make sure we should show a prerendered page
    1. The middleware checks if the request is from a crawler (agent string or _escaped_fragment_)
    2. The middleware checks to make sure we aren't requesting a resource (js, css, etc...)
    3. (optional) The middleware checks to make sure the url is in the whitelist
    4. (optional) The middleware checks to make sure the url isn't in the blacklist
  2. The middleware makes a GET request to the prerender service (phantomjs server) for the page's prerendered HTML
  3. Return the HTML to the crawler

🔧 Configuration file

You can publish the config file with:

Afterwards you can customize the Whitelist/Blacklist on your own.

This is the contents of the published config file:

🤍 Whitelist

Whitelist paths or patterns. You can use asterix syntax. If a whitelist is supplied, only url's containing a whitelist path will be prerendered. An empty array means that all URIs will pass this filter. Note that this is the full request URI, so including starting slash and query parameter string.

🖤 Blacklist

Blacklist paths to exclude. You can use asterix syntax. If a blacklist is supplied, all url's will be prerendered except ones containing a blacklist path. By default, a set of asset extensions are included (this is actually only necessary when you dynamically provide assets via routes). Note that this is the full request URI, so including starting slash and query parameter string.

🚧 Local testing

Based on the Getting started guide in the Prerender.io documentation.

  1. Download and run the prerender Server locally

The default port is 3000. You can start the node server on a different port like this:

  1. Set the prerender URL:

  2. (Optional) Open your browser and visit the following URL. Make sure to change domain.test to your local domain:

  3. Test your page as a crawler. Make sure to change domain.test to your local domain:

  4. 🎉 That's it — you should see the prerendered html!

📝 Changelog

Please see CHANGELOG for more information on what has changed recently.

✏️ Contributing

Please see CONTRIBUTING for details.

🧑‍💻 Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

🎭 License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-prerender with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2|^8.3
guzzlehttp/guzzle Version ^7.8
illuminate/support Version ^11.0
symfony/psr-http-message-bridge Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package codebar-ag/laravel-prerender contains the following files

Loading the files please wait ....