Download the PHP package phpfn/pipe without Composer

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

Pipe

Object-oriented pipe operator implementation based on RFC Pipe Operator.

Installation

Library can be installed into any PHP application:

In order to access library make sure to include vendor/autoload.php in your file.

Usage

A common PHP OOP pattern is the use of method chaining, or what is also known as "Fluent Expressions". So named for the way one method flows into the next to form a conceptual hyper-expression.

However, when using the functional approach this can lead to reduced readability, polluted symbol tables, or static-analysis defying type inconsistency such as in the following example:

The pipe library fixes this problem, allows you to chain the execution of pure functions:

Another Example

See: https://wiki.php.net/rfc/pipe-operator#file_collection_example

With this library, the above could be easily rewritten as:

Working With Value

To pass a value as an argument to a function, use the underscore (_) character:

You can omit parentheses if only one argument is used:

To get the value, use one of the options:

Working With Namespace

Let's take a simple example of such code:

Let's try to manage the namespace:

Please note that the use function applies only to the subsequent function, all further operations performed in the current context:

In order to perform several operations in another namespace, use an anonymous function as the second use argument.

Note that the behavior of the ->use() method differs depending on whether the second argument is passed.


All versions of pipe with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
symfony/polyfill-php80 Version ^1.0
phpfn/placeholder Version ^2.0.1
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 phpfn/pipe contains the following files

Loading the files please wait ....