beneflic/laravel-expo-updates

This is my package laravel-expo-updates

Fund package maintenance!
Beneflic

Installs: 85

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 2

pkg:composer/beneflic/laravel-expo-updates

dev-main 2025-07-28 17:49 UTC

README

Developed By Beneflic Latest Version on Packagist GitHub Code Style Action Status Total Downloads

This package provides a simple way to serve Expo Updates in your Laravel application.

Installation

You can install the package via composer:

composer require Beneflic/laravel-expo-updates

You can publish and run the migrations with:

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

You can publish the config file with:

php artisan vendor:publish --tag="laravel-expo-updates-config"

This is the contents of the published config file:

return [
    'manifest_route' => env('EXPO_UPDATES_MANIFEST_ROUTE', 'expo-updates/manifest'),
    'private_key' => env('EXPO_UPDATES_PRIVATE_KEY'),
    'asset_request_headers' => [],
];

Usage

  1. You should update your expo app config to point your laravel app.
  2. If you want to use code signing features, you should generate a key and certificate and.
  3. Bundle your app with npx expo export command.
  4. Upload the folder generated by command to a filesystem accessible from your laravel app.
  5. Create an instance of Beneflic\ExpoUpdates\ExpoUpdate and save it.
  6. Clear cache keys starting with expo-updates.

Roadmap

  • Creating updates with facade.
  • Filament resources
  • Add an example app

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.