d946/brackets

There is no license information available for the latest version (v0.1.1) of this package.

Library to parse brackets

Maintainers

Package info

github.com/d946/brackets

pkg:composer/d946/brackets

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v0.1.1 2018-01-08 12:03 UTC

This package is not auto-updated.

Last update: 2026-03-11 15:54:49 UTC


README

Build Status

codecov

Latest Version

Installing

composer require d946/brackets

Basic usage

<?php

$checker = new D946\Brackets();

$checker->load('()'); 
if ($checker->verify()){
  // it's ok   
} else {
  // wrong    
}