Skip to content

codebar-ag/laravel-pwa

Repository files navigation

Latest Version on Packagist Total Downloads GitHub-Tests GitHub Code Style PHPStan Dependency Review

What is Laravel PWA?

Laravel PWA is a package for laravel that provides an easy way to integrate Progressive Web Apps into your Laravel application.

🛠 Requirements Table

Package PHP Laravel
v12.0.0 ^8.2 - ^8.4 12.x

Installation

You can install the package via composer:

composer require codebar-ag/laravel-pwa

You can publish and run the migrations with:

php artisan vendor:publish --tag="laravel-pwa-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="laravel-pwa-config"

This is the contents of the published config file:

return [
];

Optionally, you can publish the views using

php artisan vendor:publish --tag="laravel-pwa-views"

Usage

$laravelPWA = new CodebarAg\LaravelPWA();
echo $laravelPWA->echoPhrase('Hello, CodebarAg!');

Testing

composer test

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.

Credits

License

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