-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "bakame/psr7-csv-factory",
"type": "library",
"description" : "a factory to return league csv object from PSR-7 StreamInterface",
"keywords": ["csv", "import", "export", "read", "write", "psr-7"],
"license": "MIT",
"homepage" : "https://github.com/bakame-php/psr7-csv-factory",
"authors": [
{
"name" : "Ignace Nyamagana Butera",
"email" : "[email protected]",
"homepage" : "https://github.com/nyamsprod/"
}
],
"require": {
"php": ">=7.3",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"league/csv": "^9.7.0",
"nyholm/psr7": "^1.4",
"phpstan/phpstan": "^0.12.10",
"phpstan/phpstan-phpunit": "^0.12.21",
"phpstan/phpstan-strict-rules": "^0.12.10",
"phpunit/phpunit": "^9.5.0"
},
"autoload": {
"psr-4": {
"Bakame\\Psr7\\Adapter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BakameTest\\Psr7\\Adapter\\": "tests"
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpstan": "phpstan analyse -l max -c phpstan.neon src",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}