Download the PHP package luverelle/pson without Composer

On this page you can find all versions of the php package luverelle/pson. 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 pson

PSON

A powerful PHP library to convert objects into JSON and vice versa using PHP attributes

Features:

Getting started

Attributes

PSON gets all object properties (including parent if exists) and if some properties has JsonProperty attribute, they will be converted into JSON.

Convert object into JSON:

  1. Create an object instance
  2. Call PSON::toJsonArray(object) method
  3. Call json_encode with your flags

Example - convert User object into JSON:

The result will be:

Convert JSON into object:

  1. Call json_decode with associative: true
  2. If you have already instantiated your object, use PSON::fromJsonArray. It returns nothing because PHP by default passing all objects by reference
  3. Otherwise, use PSON::fromJsonArrayAsClass providing the class name of that object that you want to get (return).

Example - convert JSON into User (previous example but versa):

The result will be:

Nested objects

If you have an object that contains another objects in properties, and you want to convert all together into JSON, just add JsonProperty attribute. Properties with that attribute will be converted into JSON. It also works versa: JSON -> object. Example:

The result will be:

Arrays of objects

If you want to add a JSON convertable array of objects(like User[]), ensure to add what type of object you want to convert in JsonProperty attribute like this:

TODO list:

Requirements:


All versions of pson with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
ext-json Version *
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 luverelle/pson contains the following files

Loading the files please wait ....