Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/walterproof/csv2json
PHP cli tool to convert a CSV file to JSON output
https://github.com/walterproof/csv2json
Last synced: about 2 months ago
JSON representation
PHP cli tool to convert a CSV file to JSON output
- Host: GitHub
- URL: https://github.com/walterproof/csv2json
- Owner: WalterProof
- Created: 2020-04-20T22:39:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-21T09:06:18.000Z (over 4 years ago)
- Last Synced: 2024-07-06T13:56:17.510Z (6 months ago)
- Language: PHP
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSV2JSON
![Test](https://github.com/catsoap/csv2json/workflows/Test/badge.svg)
CSV to JSON tool coding challenge.
Announcement: https://twitter.com/FredBouchery/status/1250483472042467336
Challenge: https://gist.github.com/f2r/2f1e1fa27186ac670c21d8a0303aabf1# How it works ?
A PHP 7.4 container is available, just run `make infra-up`.
# Workflow
Use make commands to run the various targets inside the container.
To see available, target, just run `make`.## Comfy VSCode config
If you use VSCode, you cann install the remote container plugin and use this configuration:
```json
{
"dockerComposeFile": "../docker-compose.yaml",
"workspaceFolder": "/workdir",
"service": "php",
"extensions": [
"junstyle.php-cs-fixer",
"felixfbecker.php-pack",
"neilbrayfield.php-docblocker",
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
}
}
```