-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.21 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ajgl/csv-rfc",
"description": "Drop in replacement for native PHP CSV related functions to read and/or write RFC4180 compliant CSV files",
"keywords": ["csv", "rfc", "4180", "rfc4180"],
"homepage": "https://github.com/ajgarlag/AjglCsvRfc",
"license": "MIT",
"authors": [
{
"name": "Antonio J. García Lagar",
"email": "[email protected]",
"homepage": "http://aj.garcialagar.es",
"role": "developer"
}
],
"autoload": {
"psr-4": { "Ajgl\\Csv\\Rfc\\": "src/" },
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": { "spec\\Ajgl\\Csv\\Tests\\": "tests/" }
},
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.17",
"league/csv": ">=7.2,<9.0"
},
"scripts": {
"fix-cs": [
"@php-cs-fixer"
],
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --ansi",
"phpunit": "vendor/bin/phpunit --colors=always",
"test": [
"@phpunit"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
}
}