-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.52 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
57
58
59
60
61
62
63
{
"name": "lekoala/spread-compat",
"description": "Easily manipulate PhpSpreadsheet, OpenSpout and League CSV",
"keywords": [
"php",
"spreadsheet",
"excel",
"csv",
"package",
"xls",
"xlsx"
],
"license": "MIT",
"authors": [
{
"name": "Thomas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"league/csv": "^9.10",
"maennchen/zipstream-php": "^3.1",
"openspout/openspout": "^4",
"phpoffice/phpspreadsheet": "^1.26|^2",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10",
"shuchkin/simplexlsx": "^1",
"shuchkin/simplexlsxgen": "^1.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"LeKoala\\SpreadCompat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpunit-migrate": "phpunit --migrate-configuration",
"phpunit-only": "phpunit --group=only",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src/ --memory-limit=-1",
"serve": "php -S localhost:8001 -t ./"
}
}