Download the PHP package morcen/passage without Composer

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

Passage: Lightweight API proxy gateway for Laravel

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Introduction

This is a powerful API Gateway package for Laravel that allows you to efficiently manage and route incoming API requests to various microservices. It simplifies the process of handling API requests and responses, enabling seamless communication between clients and microservices.

Features

Requirements

Installation

You can install the package via composer:

Then install the package using the following command:

This will publish the package's config file at config/passage.php.

If you wish to create a controller for handling requests, publish the controller stub using the following command:

and then generate Passage controllers by running:

where {name} is the name of the controller you want to generate.

Usage

Enabling Passage

To start using this package, add this line in your routes/web.php to enable Passage:

And make sure that in your .env, either PASSAGE_ENABLED is not set or it is set as true:

Setting gateway routes

Passage as a Proxy

In config/passage.php, define the services you want to be forwarded.

Example:

Note

  • Make sure that the base_uri ends with a trailing slash /, otherwise the request might not be forwarded properly.
  • All headers, query parameters, as well as the type of request (GET, POST, etc.) will be forwarded to the service.
Transforming/validating requests and response through a Passage controller

If you have a service called github and you want to handle the incoming and outgoing payloads, you can create a controller for it by running:

This will create a controller at app/Http/Controllers/Passage/GithubPassageController.php.

In your controller, you can define the following methods:

In your config/passage.php, add the controller to the services array:

Using the Passage facade

If you wish not to use automatic routing of Passage and instead use the Passage services manuall in your controllers, you can use the Passage facade.

and in your controller:

Disabling Passage

To disable Passage on a server/application level, set PASSAGE_ENABLED to false in your .env file:

Alternatively, comment this line in your routes/web.php:

Testing

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.


All versions of passage with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
spatie/laravel-package-tools Version ^1.14.0
illuminate/contracts Version ^10.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 morcen/passage contains the following files

Loading the files please wait ....