lintaba/j2p

There is no license information available for the latest version (0.1.0) of this package.

json to php

Maintainers

Package info

github.com/lintaba/j2p

pkg:composer/lintaba/j2p

Statistics

Installs: 6

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.1.0 2019-09-02 18:26 UTC

This package is auto-updated.

Last update: 2026-03-01 00:13:25 UTC


README

Json to php cli converter tool.

Installion

composer global require lintaba/j2p

Usage

Convert clipboard's json to php format

pbpaste | j2p | pbcopy

Convert from stdin

echo '{"foo":42}' | j2p

Output:

[
    'foo' => 42,
]