-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 991 Bytes
/
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
{
"name": "phpexperts/csv-speaker",
"description": "A quick and easy package for easily reading and writing CSV to/from strings and arrays.",
"keywords": [
"csv",
"easy",
"simple"
],
"homepage": "https://www.phpexperts.pro/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/hopeseekr"
}
],
"require": {
"php": ">=7.4",
"ext-spl": "*"
},
"require-dev": {
"phpunit/phpunit": "7.*|8.*|9.*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^2.14",
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": { "PHPExperts\\CSVSpeaker\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "PHPExperts\\CSVSpeaker\\Tests\\" : "tests/" }
}
}