Download the PHP package oriondevelops/larashared without Composer

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


Larashared

Latest Version on Packagist Total Downloads

Shared Hosting Deployment Management for Laravel

Larashared is a deployment guide and a helper api in shared hosting environments where ssh access is not available.

It allows using basic Artisan commands through an API by sending post requests with a bearer token for authorization. The package can be installed via composer and the configuration file can be published to modify the API path and the token. The package has several endpoints for different Artisan commands like optimizing, enabling/disabling maintenance mode, cache operations, etc.

Disclaimer

Deploying Laravel on shared hosting is not recommended. Check out this article by Pardeep Kumar:

Here’s Why You Should Stay Away From Laravel Shared Hosting

Support me


or send your love & energy <3

Installation

You can install the package via composer:

You can publish the config file with:

This is the contents of the published config file:

Deployment

Usage

Authorization

You can now send post requests to the endpoints using your token.

POST /larashared/optimize

Response

API Endpoints

HTTP Verbs Endpoints Action Parameters
POST /larashared/optimize Run artisan optimize command
POST /larashared/optimize/clear Run artisan optimize:clear command
POST /larashared/maintenance Enable or disable maintenance mode status, secret, refresh, retry
POST /larashared/config/cache Run artisan config:cache command
POST /larashared/config/clear Run artisan config:clear command
POST /larashared/route/cache Run artisan route:cache command
POST /larashared/route/clear Run artisan route:clear command
POST /larashared/view/cache Run artisan view:cache command
POST /larashared/view/clear Run artisan view:clear command
POST /larashared/migrate Run artisan migrate command seed, force, pretend, step
POST /larashared/migrate/fresh Run artisan migrate:fresh command
POST /larashared/migrate/refresh Run artisan migrate:refresh command
POST /larashared/migrate/rollback Run artisan migrate:rollback command
POST /larashared/migrate/reset Run artisan migrate:reset command
POST /larashared/seed Run artisan db:seed command class, force

Maintenance Mode

Form Data

status secret refresh retry

Status should be "up" or "down", it will be down if not specified.

Others are the same options of the artisan command. More information can be found at Laravel Docs.

To be able to use the api in maintenance mode, do not forget to update following middleware.

Migrate

POST /larashared/migrate
POST /larashared/migrate/fresh
POST /larashared/migrate/refresh
POST /larashared/migrate/rollback
POST /larashared/migrate/reset

Form Data

seed force pretend step

Seed

POST /larashared/seed

Form Data

class force

Optionally seeder class can be specified by class parameter.

If you plan to seed your application, make sure dev dependencies like fakerphp/faker are installed.

Credits

License

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


All versions of larashared with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^9.0
illuminate/contracts Version ^9.0
spatie/laravel-package-tools Version ^1.9.2
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 oriondevelops/larashared contains the following files

Loading the files please wait ....