-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "phpdevsr/phpspreadsheet-secure",
"description": "Secure your spreadsheet with Encrypt and Password Protect",
"license": "MIT",
"type": "library",
"keywords": [
"spreadsheet",
"phpspreadsheet",
"secure",
"encrypt",
"excel",
"xlsx",
"xls"
],
"authors": [
{
"name": "Denny Septian Panggabean",
"email": "xamidimura@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/PHPDevsr/PHPSpreadsheet-Secure",
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"ext-openssl": "*",
"ext-hash": "*",
"ext-simplexml": "*",
"pear/ole": "^v1.0.0",
"pear/pear-core-minimal": "^v1.10.15"
},
"require-dev": {
"codeigniter/coding-standard": "^1.8.1",
"nexusphp/tachycardia": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpcov": "^9.0.2 || ^10.0",
"phpunit/phpunit": "^10.5.16 || ^11.2",
"rector/rector": "1.2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PHPDevsr\\Spreadsheet\\": "src"
},
"psr-0": {
"OLE": "vendor/pear/ole/OLE"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"post-update-cmd": [
"bash admin/setup.sh"
],
"reci": [
"Composer\\Config::disableProcessTimeout",
"@cs",
"@analyze",
"@test"
],
"analyze": [
"@phpstan",
"@rector"
],
"cs-fix": "vendor/bin/php-cs-fixer fix --ansi --verbose --diff",
"cs": "vendor/bin/php-cs-fixer fix --ansi --verbose --dry-run --diff",
"rector": "vendor/bin/rector process --dry-run",
"phpstan": "bash -c \"XDEBUG_MODE=off phpstan analyse\"",
"phpstan-baseline": "bash -c \"XDEBUG_MODE=off phpstan analyse --generate-baseline phpstan-baseline.php\"",
"test": "vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml --coverage-php build/cov/coverage.cov --testsuite main"
}
}