Download the PHP package bored-programmers/laravel-wolt without Composer

On this page you can find all versions of the php package bored-programmers/laravel-wolt. 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 laravel-wolt

Laravel Wolt API Integration

Wolt is a Laravel package that allows you to integrate your restaurant with the Wolt platform. It provides a simple and easy-to-use API for syncing your menu and managing orders.

Table of Contents

Requirements

Installation

To install Wolt, you need to run the following command:

Publish the configuration file and set up your environment variables.

Update your .env file with the following variables:

Usage

Sync Menu

To sync your menu with Wolt, use the WoltService::syncMenu method.
Here is an example of how you can use the DTOs to create a menu and sync it with Wolt.

Get Order

To retrieve an order, use the WoltService::getOrder method.

You will get Order ID from your webhook called by Wolt.
More about it > here: Wolt Webhook Documentation.

I recommend using spatie/laravel-webhook-client package for handling webhooks.

Accept Order

To accept an order, use the WoltService::acceptOrder method.

Reject Order

To reject an order, use the WoltService::rejectOrder method.

Mark Order as Ready

To mark an order as ready, use the WoltService::markReadyOrder method.

Mark Order as Delivered

To mark an order as delivered, use the WoltService::markDeliveredOrder method.

Confirm Preorder

To confirm a preorder, use the WoltService::confirmPreorder method.

Contribution Guidelines

We welcome contributions to Wolt. If you'd like to contribute, please fork the repository, make your changes, and submit a pull request. We have a few requirements for contributions:

Changelog

For a detailed history of changes, see releases on GitHub.

License

This project is licensed under the MIT license.

Contact Information

For any questions or concerns, please feel free to create a discussion on GitHub.

Credits

Created by Matěj Černý from Bored Programmers.

Acknowledgments

We would like to thank all the contributors who have helped to make Wolt a better package.


All versions of laravel-wolt with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
laravel/framework Version >=10.0
spatie/laravel-data Version >=4.6
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 bored-programmers/laravel-wolt contains the following files

Loading the files please wait ....