lucid/common

Shared utilities for lucid/* packages

Installs: 2 421

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/lucid/common

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

This package is not auto-updated.

Last update: 2025-10-12 00:46:56 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', ...);