Download the PHP package christopheraseidl/livewire-cookie-consent without Composer

On this page you can find all versions of the php package christopheraseidl/livewire-cookie-consent. 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 livewire-cookie-consent

Add a GDPR-compliant cookie notice to your Laravel project using Livewire

This package provides an easy way to display a cookie consent notice along with a cookie policy that can be displayed in the default modal or anywhere else in your application. It requires Livewire 3 and Tailwind CSS.

All websites that wish to be used in Europe must comply with an EU law stipulating that users must be advised of — and must consent to — any tracking or analytics cookies. Functional cookies are optional. To be sure, you may want to consult the European Commission guidelines.

When using this package, be sure to confirm that the policy text meets your requirements. You will probably want to edit it after publishing the views.

Finally, note that this package ships by default with English and Spanish translations.

Installation

You can install the package via composer:

You should then run the installation command:

This will:

  1. publish the necessary assets;
  2. set up tailwind.config.js, vite.config.js, and app.css;
  3. and run npm run build to compile your project for production.

The package will automatically register its service provider.

If you are using an alternative asset bundler like Mix, you will need to make some manual adjustments to the installation and setup process.

If you publish the views, you should modify your tailwind.config.js file to exclude the defaults located in the /vendor/christopheraseidl/livewire-cookie-consent folder.

Configuration

You may publish the config file if you wish:

By default, the contents of this file are as follows:

Usage

You have two options for using the modal that asks the user for consent:

Option 1. Including the Livewire component directly in a template:

Option 2. Adding the middleware to the kernel:

When the user allows cookies — by clicking Yes. — a cas_laravel_cookie_consent cookie will be set, and the dialog will be hidden until the cookie expires, by default with a lifetime of 60 * 24 * 365.

You can check whether consent has been given with the provided service facade: CookieConsent::consentGiven().

You can call a similar method to check whether consent has been refused: CookieConsent::consentRefused().

Including the cookie policy component

The modal provided by this package already includes the cookie policy component, which you can include anywhere in your application, like so:

You may customize this policy by publishing the views and editing the resulting component view file.

Should you wish to provide a policy in another language, first set up your application to use your locale, then create a directory for your locale in /resources/views/christopheraseidl/policy/, then place a file there called cookie-policy.blade.php

Disabling the package

To stop this package from displaying a modal or handling cookie consent, after publishing the configuration file, change enabled to false.

Deleting an array of cookies when consent is refused

If you want to delete cookies in your application when the user refuses consent, publish the config file and add their names to the cookies_to_delete array. For example:

Customizing translations

You may publish the translations to resources/lang/christopheraseidl/cookie-consent with this command:

Customizing views

You may publish the views to resources/views/christopheraseidl/cookie-consent with this command:

Uninstalling

Before running composer remove christopheraseidl/livewire-cookie-consent, you should run the following command to clean up after this package:

Testing

License

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


All versions of livewire-cookie-consent with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
livewire/livewire Version ^3.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 christopheraseidl/livewire-cookie-consent contains the following files

Loading the files please wait ....