-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "bcremer/line-reader",
"description": "Read large files line by line in a memory efficient (constant) way.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benjamin Cremer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"infection/infection": "^0.26",
"friendsofphp/php-cs-fixer": "3.13.2",
"phpstan/phpstan": "1.9.14",
"phpstan/phpstan-phpunit": "1.3.3"
},
"autoload": {
"psr-4": {
"Bcremer\\LineReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bcremer\\LineReaderTests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix -v",
"cs-check": "php-cs-fixer fix --dry-run -v",
"phpstan": "phpstan"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}