Download the PHP package quartet/haydn without Composer

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

Haydn

Build Status Scrutinizer Code Quality Code Coverage Total Downloads Latest Stable Version Latest Unstable Version

配列に対してかけ算や列演算を宣言的に指定できるライブラリ。 実装の特徴として、Setに対する各種演算は単に宣言的に行われるのみで、Setオブジェクトをforeach等でイテレーションしないかぎり、中身の走査は行われない点。

Install

composer require quartet/haydn

Usage

Set declaration (using source object)

Specific Sets

IdenticalSet

EmptySet

Set operations

ProductSet

Set#product(Set $target)

2つのSetをかけたSetを作る。(デカルト積)

SelectSet

Set#select(array $selectors)

Setの各要素に対して、何らかの加工を加えた結果のSet。

FilterSet

Set#filter(MatcherInterface $matcher)

Setの要素に対して、マッチしたものだけを取り出したSet。

Matcherは、対象列の名前をキーとして、完全一致する文字列を指定する。 また、完全一致の値ではなく、Closureを渡して動的に評価させることも可能。

Devide

Set#devide(array $matchers)

Matcherを複数指定して、それぞれのMatcherに対応するSetへ分割する。

Union

Set#union(Set $target)

複数のSetを結合して、つながったSetを返す。

Grouping

グルーピング演算したSetを返す。ここでグルーピング演算とは、キーとなる集合の各要素それぞれがさらに明細の集合を有するような、「キーの数だけグループを持つ集合」を作成することを指す。 具体的には以下のとおり。

Source

Setのデータ供給源(データソース)。

ArraySource

PHPの配列(2次元)をデータソースとして利用する。

SingleColumnArraySource

1列のみのPHP配列(1次元)をデータソースとして利用する。

SingleRowSource

1行のみのPHP配列(1次元)をデータソースとして利用する。

ColumnMapper

Sourceの列名マッピング

HashKeyColumnMapper

各行が連想配列になっているデータソースで、連想配列のキー名をそのまま列名として使う。

SimpleArrayColumnMapper

キーの無い配列データソースに、列名を配列で与える。

NullColumnMapper

列名マップを使わない。

ChainMapper

列名マッパーを複数チェインさせる。

Support

If you find a bug or have a question, or want to request a feature, create an issue or pull request for it on Issues.

Copyright

Copyright (c) 2015 GOTO Hidenori, All rights reserved.

License

The BSD 2-Clause License


All versions of haydn with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
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 quartet/haydn contains the following files

Loading the files please wait ....