Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Json Laravel Package

braincrafted/json

Object-oriented wrapper around PHP’s json_encode() and json_decode() providing simple static encode/decode methods plus exception-based error handling. Supports decoding to arrays or objects via Json::DECODE_ASSOC and Json::DECODE_OBJECT.

View on GitHub
Deep Wiki
Context7

Braincrafted\Json

An object-orientated wrapper for json_encode() and json_decode() with error handling.

Build Status

Developed by Florian Eckerstorfer in Vienna, Europe.

Installation

The recommended way of installing BraincraftedJson is through Composer:

$ composer require braincrafted/json:@stable

Tip: You should replace @stable with the most recent version from the releases page.

Usage

use Braincrafted\Json\Json;
use Braincrafted\Json\JsonDecodeException;

// Encode a variable as JSON:
echo Json::encode(array('name' => 'Bilbo Baggins'));

// Decode JSON:
print_r(Json::decode('{"name": "Bilbo Baggins"}'));

// Decode JSON into an array:
print_r(Json::decode('{"name": "Bilbo Baggins"}', Json::DECODE_ASSOC));

// Error handling
try {
    Json::decode('{"name": "Bilbo Baggins"'); // missing }
} catch (JsonDecodeException $e) {
    echo sprintf("Could not decode JSON.\nReason: %s", $e->getMessage());
}

Changelog

Version 0.3 (18 November 2014)

  • Switched from PSR-0 to PSR-4
  • Use Json::DECODE_ASSOC and Json::DECODE_OBJECT as second argument for Json::decode()

Version 0.2 (15 November 2013)

  • Changed namespace to Braincrafted

License

The MIT License (MIT)

Copyright (c) 2013 Florian Eckerstorfer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
sentix/ai-chatbot
terminal42/code-quality-tools
codifyo/ts-generator-bundle
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky