Skip to content
forked from Sandertv/Marshal

A PHP library to decode/encode YAML and JSON in a Go style using Marshal/Unmarshal.

Notifications You must be signed in to change notification settings

RedMCME/Marshal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Marshal

A PHP library to decode/encode YAML and JSON from a serialised representation directly into a PHP object. It includes type checking and makes sure that the value inserted into class properties is of the correct values.

Example usage

class Obj {
  /**
  * @marshal c
  */
  public $a = "default value"; // Default field values may be supplied to set the type of a field and the value that is set to the config if it doesn't yet exist.
  public $b = 7;
}

$obj = new Obj();
try{
  Unmarshal::yamlFile("path/to/yaml/file", $obj);
}catch(FileNotFoundException $exception){
  // File doesn't yet exist, marshal the object to the file.
  Marshal::yamlFile("path/to/yaml/file", $obj);
}catch(DecodeException $e){
  echo "corrupted config";
}

Usage of the JSON part of the library is identical to the YAML part.

About

A PHP library to decode/encode YAML and JSON in a Go style using Marshal/Unmarshal.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%