Download the PHP package dryist/functions without Composer

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

Dryist Functions

Build Status Code Quality Code Coverage Latest Stable Version Total Downloads License

A variety of utility functions for common programming needs.

Installation

The best way to install and use this package is with composer:

Usage

There are several categories of functions:

All functions have a constant that refers the fully qualified function name. These constants can be used for composed or piped operations.

There are a number of other packages that provide compatible (and/or similar) utility functions, including:

Any functionality missing in this package can probably be found elsewhere.

Alegbra

always()

Creates a "K combinator" that always returns the original value:

compose()

Creates a "substitution combinator" that composes two callables:

identity()

Always returns the first input:

This function is also aliased as Dryist\id.

invert()

Creates an inverted predicate:

Array

All of the array functions accept iterable variables, including arrays, iterators, and generators.

count()

Count the number of items in a list or map:

combine()

Combines two lists to create a map:

filter()

Filter a list or map by a predicate of the value:

filterKey()

Filter a list or map by a predicate of the key:

Related functions:

keys()

Read the keys from a map into a list:

map()

Apply a value modifier to a list or map:

mapBoth()

Apply a value modifier to a list or map:

This differs from map() in that the modifier receives both the key and the value.

mapKey()

Apply a key modifier to a list or map:

resolve()

An alias for iterator_to_array.

take()

Take some values from a map by a list of keys:

values()

Read the values of a map into a list:

Tool

make()

Create a modifier that constructs an object.

stringify()

Convert a value to a string, unless it is null.


All versions of functions with dependencies

PHP Build Version
Package Version
Requires php Version ^7.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 dryist/functions contains the following files

Loading the files please wait ....