lintaba/j2p

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

json to php

Maintainers

Details

github.com/lintaba/j2p

Source

Issues

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/lintaba/j2p

0.1.0 2019-09-02 18:26 UTC

This package is auto-updated.

Last update: 2025-09-29 02:42:35 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,
]