lucid/common

Shared utilities for lucid/* packages

Maintainers

Package info

github.com/lucidphp/common

pkg:composer/lucid/common

Statistics

Installs: 2 527

Dependents: 3

Suggesters: 0

Stars: 0

Open Issues: 0

v0.0.1 2016-04-12 19:51 UTC

This package is not auto-updated.

Last update: 2026-03-01 03:04:32 UTC


README

Author Source Code Software License

Build Status Code Coverage HHVM

Requirements

php >= 5.6

Installation

$ composer require lucid/common

Data Structs

Items

The Items class implements a ListInterface and is modeled after pythons list.

<?php

use Lucid\Common\Struct\Items;

$list = new Items('foo', 'bar', ...);