-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.56 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.56 KB
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
85
{
"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.2 || ^8.3 || ^8.4 || ^8.5",
"ext-openssl": "*",
"ext-hash": "*",
"ext-simplexml": "*",
"pear/ole": "^v1.0.0",
"pear/pear-core-minimal": "^v1.10.15"
},
"require-dev": {
"codeigniter/coding-standard": "^1.9.1",
"nexusphp/tachycardia": "^2.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.43",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpunit/phpcov": "^10.0 || ^11.0",
"phpunit/phpunit": "^11.5",
"rector/rector": "2.3.9"
},
"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",
"rector-fix": "vendor/bin/rector process",
"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-html build/phpunit/html --coverage-clover build/phpunit/logs/clover.xml --coverage-php build/phpunit/cov/coverage.cov --testsuite main"
}
}