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
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
This package is not auto-updated.
Last update: 2025-12-30 22:21:43 UTC
README
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
- You should update your expo app config to point your laravel app.
- If you want to use code signing features, you should generate a key and certificate and.
- Bundle your app with
npx expo exportcommand. - Upload the folder generated by command to a filesystem accessible from your laravel app.
- Create an instance of
Beneflic\ExpoUpdates\ExpoUpdateand save it. - 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.