-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.37 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
64
65
66
{
"name": "alexandrainst/php-xlsx-fast-editor",
"description": "PHP library to make basic but fast read & write operations on existing Excel workbooks",
"keywords": [
"PHP",
"OpenXML",
"Excel",
"xlsx",
"xlsm",
"spreadsheet",
"workbook",
"editor"
],
"homepage": "https://github.com/alexandrainst/php-xlsx-fast-editor",
"type": "library",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Alexandre Alapetite",
"homepage": "https://github.com/Alkarex",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-ctype": "*",
"ext-dom": "*",
"ext-xml": "*",
"ext-zip": "*"
},
"require-dev": {
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-strict-rules": "^1.6",
"squizlabs/php_codesniffer": "^3.10"
},
"scripts": {
"php-lint": "find . -type d -name 'vendor' -prune -o -name '*.php' -print0 | xargs -0 -n1 -P4 php -l 1>/dev/null",
"phpcs": "phpcs . -s",
"phpcbf": "phpcbf . -p -s",
"phpstan": "phpstan analyse .",
"asserts": "php -d zend.assertions tests/test.php",
"test": [
"@php-lint",
"@phpcs",
"@phpstan",
"@asserts"
],
"fix": [
"@phpcbf"
]
},
"autoload": {
"psr-4": {
"alexandrainst\\XlsxFastEditor\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": false
},
"sort-packages": true
}
}