-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
33 lines (33 loc) · 1.17 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ozdemirburak/json-csv",
"description": "JSON to CSV and CSV to JSON converters in PHP.",
"keywords": ["json", "csv", "json to csv", "csv to json", "json2csv", "csv2json"],
"homepage": "https://github.com/ozdemirburak/json-csv",
"license": "MIT",
"authors": [
{
"name": "Burak Özdemir",
"homepage": "https://ozdemirburak.com"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit" : "~8.0|~9.0",
"squizlabs/php_codesniffer": "~3.5"
},
"autoload": {
"psr-4": { "OzdemirBurak\\JsonCsv\\": "src" }
},
"autoload-dev": {
"psr-4": { "OzdemirBurak\\JsonCsv\\Tests\\": "tests" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}