Download the PHP package stratadox/json without Composer

On this page you can find all versions of the php package stratadox/json. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package json

Json

Build Status Coverage Status Infection Minimum PhpStan Level Scrutinizer Code Quality Maintainability Latest Stable Version License

Json handling library for easily reading from and writing to json strings.

Installation

Install with composer require stratadox/json

What is this?

This library provides a simple object-oriented way of dealing with json strings in php.

The basic idea is to create a Json (php) object from either a json string or "raw" data, which represents the json data in the php world. Through this object, the contents of the json data can be retrieved. The interface also provides a mechanism for altering the json structure, either by modifying the current instance or by returning a modified copy.

To produce a json-encoded text representation of the contents, simply casting the Json instance to string is enough.

How to use this?

The package provides two approaches to handling json structures: an immutable and a mutable way. They both implement the same interface and differ only in the way they implement the write method.

Immutable Json

Create an immutable json structure by converting a json-encoded string:

Or from the "raw" data:

Retrieve the values:

Retrieve nested values:

Write values to a new copy:

(Notice that the value to be written comes before the path.)

The changed structure will contain the new value:

The original structure will not be modified:

The write-calls can be chained:

Mutable Json

Create a mutable json structure by converting a json-encoded string:

Or from the "raw" data:

Retrieve the values:

Retrieve nested values:

Write new values to the structure:

(Notice that the value to be written comes before the path.)

The write-calls can be chained:

Parser

The JsonParser is a simple factory to create either mutable or immutable Json instances from string.

It can be used in cases where you need to parse strings, but don't want to call the constructors directly.

By default, the parser produces immutable json instances. It can be tuned to produce mutable instances instead, by using the mutable method. To turn it back to immutable, use the immutable method.

Fun fact: the JsonParser currently allows exactly two instances of its class, making it an implementation of the little-known Doubleton pattern.


All versions of json with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package stratadox/json contains the following files

Loading the files please wait ....