Download the PHP package egeatech/app-updater without Composer

On this page you can find all versions of the php package egeatech/app-updater. 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 app-updater

AppUpdater

Latest Version on Packagist Total Downloads

A package to handle updates distribution of mobile applications which are not published in the official stores.

Installation

This package supports Laravel 7 and 8.

Via Composer

Usage

Route registration

To use this package you simply have to register its routes. An example would be in your app RouteServiceProvider: just paste this in the boot() method

and you will be ready to go.

Optionally, you can define custom per-route middlewares or change the prefix of the routes defined by the package: simply pass to the routes() function a EgeaTech\AppUpdater\Http\Routing\RoutingOptions object defining your settings of choice. An example usage is this:

Configuration publishing

The package comes with a small configuration file which configures some little aspects. To publish it, run

Migrations publishing

The package will add an extra table to your database, to save all available applications. Publish its migration to get started by running

NOTE: The published file can be modified but be aware that updating the structure will require to update the dependency injection defined by the package (more on this later).

Dependency injection

The package is highly configurable, as most of its components are handled via interfaces wired by Laravel DI mechanism to concrete classes. In order to override the components of the package (Form Requests, JSON resources, Eloquent Model, Service and Repository classes) you'll have to create a new ServiceProvider class to bind package own interface to your own custom class. In this example we'll reassign the Application model to another entity.

After defining the new ServiceProvider class, don't forget to add it to your config/app.php file, in the providers array.

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

The software is licensed under MIT. Please see the license file for more information.


All versions of app-updater with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-fileinfo Version *
ext-json Version *
illuminate/support Version ~6|~7|~8|~9|~10
bensampo/laravel-enum Version ^v6.7.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 egeatech/app-updater contains the following files

Loading the files please wait ....