Download the PHP package lukaszmakuch/aggregator without Composer

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

travis

Aggregator

Makes generating statistics database agnostic and flexible.

This document briefly describes the library. For more details, check unit tests.

Why is it interesting?

A simple aggregator

given

gives

About the library

Built-in aggregators

There are few basic aggregators built-in

Counter

lukaszmakuch\Aggregator\Impl\Counter\Counter

Counts all given subjects.

Limit

lukaszmakuch\Aggregator\Impl\Limit\Limit

Limits the number of aggregated subjects. It is visible for visitors.

TransparentLimit

lukaszmakuch\Aggregator\Impl\Limit\TransparentLimit

Limits the number of aggregated subjects. It is invisible for visitors.

Percentage

lukaszmakuch\Aggregator\Impl\Percentage\Percentage

Calculates a percentage value of subjects that meet some requirement.

ListAggregator

lukaszmakuch\Aggregator\Impl\ListAggregator\ListAggregator

Generates a list of text representations of subjects separated with some given delimiter.

PropertyList

lukaszmakuch\Aggregator\Impl\PropertyList\PropertyList

List of properties of aggregated subjects. Uses a PropertyReader to read them.

Filter

lukaszmakuch\Aggregator\Impl\Filter\Filter

Takes into account only those subjects that meet the given requirement.

GroupingAggregator

lukaszmakuch\Aggregator\Impl\GroupingAggregator\GroupingAggregator

Groups subjects by some property.

HierarchicalAggregator

lukaszmakuch\Aggregator\Impl\HierarchicalAggregator\HierarchicalAggregator

Supports parent-children relationships.

ProjectionAggregator

lukaszmakuch\Aggregator\Impl\Projection\ProjectionAggregator

Before passing subjects to some other aggregator, gets a a different of them.

ConditionalAggregator

lukaszmakuch\Aggregator\Impl\ConditionalAggregator\ConditionalAggregator

Equals one of two given aggregators, depending on the given PredicateAggregator.

Container

lukaszmakuch\Aggregator\Impl\Container\Container

Holds many actual aggregators and passes to them all what's passed to it.

WithCustomLabel

lukaszmakuch\Aggregator\LabelGenerator\WithCustomLabel

Decorates some aggregator with a label generated by the provided label generator.

LabelGenerator

An instance of lukaszmakuch\TextGenerator\TextGenerator is used by an AggregatorVisitor to generate labels for aggregators.

LabelGeneratorBuilder

Because of the complex nature of possible labels, there's a builder that makes it easier to get a generator that fits your needs.

ScalarPresenter

Generates a representation of the given aggregator as a scalar value or an array of scalar values.

ScalarPresenterBuilder

Because of the complex nature of possible aggregator composites, there's a builder that makes it easier to get a scalar presenter that fits your needs.

XmlPresenter

Generates an XML representation of a given aggregator as a String.

XmlPresenterBuilder

Because of the complex nature of possible aggregator composites, there's a builder that makes it easier to get an xml presenter that fits your needs.

How to install


All versions of aggregator with dependencies

PHP Build Version
Package Version
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 lukaszmakuch/aggregator contains the following files

Loading the files please wait ....