jgaydos/php-jawn

There is no license information available for the latest version (dev-master) of this package.

dev-master 2022-02-16 12:52 UTC

This package is auto-updated.

Last update: 2024-04-16 17:32:40 UTC


README

My collection of use(less|full) PHP classes to make life easier.

Word of warning: This is likely still teeming with bugs. Like lots.

Minimum Requirements

  • PHP 7.2
  • Composer

Installation

composer require jgaydos/php-jawn

Usage

Quick Setup

Basic example of writing messages to the console.

<?php

use Jawn\Console;

require_once(__DIR__ . '/../vendor/autoload.php');

Console::info('Info message');
Console::success('Success message');
Console::warning('Warning message');
Console::danger('Danger message');