d946/brackets

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

Library to parse brackets

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

This package is not auto-updated.

Last update: 2024-09-25 08:42:02 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    
}