PHP Classes

File: composer.json

Recommend this page to a friend!
  Packages of Omar Andrés Barbosa Ortiz   CSV Reader Class   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CSV Reader Class
Read data from CSV files using generators
Author: By
Last change:
Date: 10 months ago
Size: 1,159 bytes
 

Contents

Class file image Download
{ "name": "barbosa89/csv", "description": "CSV reader", "keywords": [ "barbosa89", "csv" ], "homepage": "https://github.com/barbosa89/csv", "license": "MIT", "authors": [ { "name": "Omar Barbosa", "email": "contacto@omarbarbosa.com", "role": "Developer" } ], "require": { "php": "^8.2" }, "require-dev": { "phpunit/phpunit": "^10.3.2", "friendsofphp/php-cs-fixer": "^3.21.1", "spatie/ray": "^1.28" }, "autoload": { "psr-4": { "Barbosa\\Csv\\": "src" } }, "autoload-dev": { "psr-4": { "Barbosa\\Csv\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test:coverage": "vendor/bin/phpunit --coverage", "format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes" }, "config": { "sort-packages": true, "allow-plugins": { "phpstan/extension-installer": true } }, "minimum-stability": "dev", "prefer-stable": true }