-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.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": "offdev/csv",
"description": "Reads, parses and validates CSV files using streams",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Pascal Severin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0",
"illuminate/support": "^5.6",
"illuminate/validation": "^5.6"
},
"require-dev": {
"infection/infection": "^0.10.5",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^0.11.1",
"localheinz/phpstan-rules": "^0.7.1"
},
"autoload": {
"files": [
"src/helper.php"
],
"psr-4": {
"Offdev\\Csv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Offdev\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyze",
"codesniffer": "./vendor/bin/phpcs --colors --standard=PSR2 -v src/ tests/",
"infection": "./vendor/bin/infection",
"test": ["@codesniffer", "@phpstan", "@phpunit","@infection"]
}
}