How to Install and Uninstall php-flow-jsonpath.noarch Package on Fedora 36

Last updated: October 06,2024

1. Install "php-flow-jsonpath.noarch" package

Learn how to install php-flow-jsonpath.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install php-flow-jsonpath.noarch

2. Uninstall "php-flow-jsonpath.noarch" package

This guide let you learn how to uninstall php-flow-jsonpath.noarch on Fedora 36:

$ sudo dnf remove php-flow-jsonpath.noarch $ sudo dnf autoremove

3. Information about the php-flow-jsonpath.noarch package on Fedora 36

Last metadata expiration check: 2:34:48 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : php-flow-jsonpath
Version : 0.3.4
Release : 10.fc36
Architecture : noarch
Size : 18 k
Source : php-flow-jsonpath-0.3.4-10.fc36.src.rpm
Repository : fedora
Summary : JSONPath implementation for parsing, searching and flattening arrays
URL : https://github.com/FlowCommunications/JSONPath
License : MIT
Description : This is a JSONPath [1] implementation for PHP based on Stefan Goessner's
: JSONPath script.
:
: JSONPath is an XPath-like expression language for filtering, flattening and
: extracting data.
:
: I believe that is improves on the original script (which was last updated in
: 2007) by doing a few things:
: * Object-oriented code (should be easier to manage or extend in future)
: * Expressions are parsed into tokens using some code cribbed from Doctrine
: Lexer and cached
: * There is no eval() in use
: * Performance is pretty much the same
: * Any combination of objects/arrays/ArrayAccess-objects can be used as the data
: input which is great if you're de-serializing JSON in to objects or if you
: want to process your own data structures.
:
: Autoloader: /usr/share/php/Flow/JSONPath/autoload.php
:
: [1] http://goessner.net/articles/JsonPath/