jmespath.php

Declaratively specify how to extract elements from a JSON document, in PHP

MIT License

Downloads
336.8M
Stars
1.9K
Committers
15

Bot releases are hidden (Show)

jmespath.php - 2.7.0 Latest Release

Published by GrahamCampbell about 1 year ago

  • Fixed flattening in arrays starting with null
  • Drop support for HHVM and PHP earlier than 7.2.5.
  • Add support for PHP 8.1, 8.2, and 8.3.
jmespath.php - 2.6.1

Published by GrahamCampbell over 3 years ago

  • Fixed edge case crash on PHP 8.0.
jmespath.php - 2.6.0

Published by GrahamCampbell about 4 years ago

  • Support for PHP 8.0.
jmespath.php - 2.5.0

Published by GrahamCampbell almost 5 years ago

  • Full support for PHP 7.0-7.4.
  • Fixed autoloading when run from within vendor folder.
  • Full multibyte (UTF-8) string support.
jmespath.php - 2.4.0

Published by mtdowling almost 8 years ago

  • Added support for floats when interpreting data.
  • Added a function_exists check to work around redeclaration issues.
jmespath.php - 2.3.0

Published by mtdowling almost 9 years ago

  • Added support for JEP-9,
    including unary filter expressions, and && filter expressions.
  • Fixed various parsing issues, including not removing escaped single quotes
    from raw string literals.
  • Added support for the map function.
  • Fixed several issues with code generation.
jmespath.php - 2.2.0

Published by mtdowling over 9 years ago

  • Added support for JEP-12 and raw string literals (e.g., 'foo').
jmespath.php - 2.1.0

Published by mtdowling almost 10 years ago

  • Added JmesPath\Env::cleanCompileDir() to delete any previously compiled JMESPath expressions.
jmespath.php - 2.0.0

Published by mtdowling almost 10 years ago

  • Moving to a flattened namespace structure.
  • Runtimes are now only PHP callables.
  • Fixed an error in the way empty JSON literals are parsed so that they now
    return an empty string to match the Python and JavaScript implementations.
  • Removed functions from runtimes. Instead there is now a function dispatcher
    class, FnDispatcher, that provides function implementations behind a single
    dispatch function.
  • Removed ExprNode in lieu of just using a PHP callable with bound variables.
  • Removed debug methods from runtimes and instead into a new Debugger class.
  • Heavily cleaned up function argument validation.
  • Slice syntax is now properly validated (i.e., colons are followed by the
    appropriate value).
  • Lots of code cleanup and performance improvements.
  • Added a convenient JmesPath\search() function.
  • IMPORTANT: Relocating the project to https://github.com/jmespath/jmespath.php