-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 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
{
"name": "renekorss/phpexcelformatter",
"type": "library",
"description": "PHPExcelFormatter is class to make it more simple to get data from Excel documents.",
"keywords": ["PHP", "Excel", "format", "xlsx", "xls", "spreadsheet"],
"homepage": "https://github.com/renekorss/PHPExcelFormatter",
"license": "MIT",
"authors": [
{
"name": "Rene Korss",
"email": "rene.korss@gmail.com",
"homepage": "https://koren.ee",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"phpoffice/phpspreadsheet": "^1.14"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"cedx/coveralls": "^11.2",
"phpmd/phpmd": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"RKD\\PHPExcelFormatter\\": "src"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"build": [
"@format",
"@test",
"@phpcs",
"@phpmd"
],
"test": "./vendor/bin/phpunit",
"format": "./vendor/bin/php-cs-fixer fix",
"phpmd": "./vendor/bin/phpmd ./src text phpmd.xml",
"phpcs": "./vendor/bin/phpcs --report=full --extensions=php -p --standard=phpcs.xml ./src ./tests"
}
}