tekton/support

This package is abandoned and no longer maintained. The author suggests using the illuminate/support package instead.

The support project is a collection of utility functions and classes/traits that can be reused in other projects.

Maintainers

👁 nsrosenqvist

Package info

github.com/tekton-php/support

pkg:composer/tekton/support

Statistics

Installs: 157

Dependents: 17

Suggesters: 0

Stars: 0

Open Issues: 0

3.0.0 2018-11-17 23:19 UTC

Requires

  • php: >=7.0.0

Requires (Dev)

None

Suggests

Provides

None

Conflicts

None

Replaces

None

MIT 615b9f19ab66ebc2aa49aaccff12b1fc3b9266b5

This package is auto-updated.

Last update: 2020-06-09 20:12:35 UTC


README

The support project is a collection of utility functions and classes/traits that can be reused in other projects. It includes a couple of helper functions and classes that simplifies data manipulation and management.

Installation

composer require tekton/support

Usage

By default the project also includes a select set of utilities from illuminate/support without pulling in all of the Laravel specific code. The version included is currently 5.4 (Collection, Fluent, helpers, etc.) and it's only included if it's not loaded from elsewhere. So the version can easily be overridden by depending on a specific version in your own project.

If you'd rather not load any of the Illuminate components you can set the constant TEKTON_ILLUMINATE to false before including the autoload file.

define('TEKTON_ILLUMINATE', false);

require "vendor/autoload.php";

License

MIT