Download the PHP package motaword/active-laravel without Composer
On this page you can find all versions of the php package motaword/active-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download motaword/active-laravel
More information about motaword/active-laravel
Files in motaword/active-laravel
Package active-laravel
Short Description Laravel middleware for MotaWord Active
License MIT
Homepage https://github.com/motaword/active-laravel
Informations about the package active-laravel
This package was developed to give you a quick start to integrate with the MotaWord Active service to localize your Laravel application.
🙇 Credits
This package is a clone from codebar-ag/laravel-prerender.
💡 What is MotaWord Active?
🛠 Requirements
- PHP:
^7.2 to ^8.2
- Laravel:
^6 to ^10
- MotaWord Active access
⚙️ Installation
You can install the package via composer:
Then, add the following to your .env
file:
That's it. Every GET-Request from a crawler will be forwarded to MotaWord's Active Serve.
✋ Disable Active Serve (SEO + CDN)
You can disable Active Serve service by adding the following to your .env
file:
This may be useful for your local development environment.
✏️ How it works
- The middleware checks to make sure we should show a prerendered page
- The middleware checks if the request is from a crawler (agent string or
_escaped_fragment_
) - The middleware checks to make sure we aren't requesting a resource (js, css, etc...)
- (optional) The middleware checks to make sure the url is in the whitelist
- (optional) The middleware checks to make sure the url isn't in the blacklist
- The middleware checks if the request is from a crawler (agent string or
- The middleware makes a
GET
request to Active Serve for the page's HTML - 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 asterisk syntax. If a whitelist is supplied, only urls containing a whitelist path will be sent to Active Serve. 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 asterisk syntax. If a blacklist is supplied, all urls will be sent to Active Serve 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
- Configure MotaWord Active via environment variables:
2Test your page like a search engine bot. Make sure to change the URL with your local application URL:
- 🎉 That's it — you should see the html output from Active Serve!
📝 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 active-laravel with dependencies
illuminate/support Version ^6.0|^7.0|^8.0|^9.0|^10.0
guzzlehttp/guzzle Version ^6.0|^7.0
symfony/psr-http-message-bridge Version ^1.3|^2.0