-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
33 lines (33 loc) · 918 Bytes
/
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
{
"name": "nick322/secure-spreadsheet",
"description": "Encrypt and password protect sensitive XLSX files",
"type": "library",
"license": "MIT",
"__note__": "once pear/ole internalizes the dependency on pear-core-minimal, bumpt the pear/ole min version above and remove pear/pear-core-minimal from require-dev",
"require": {
"php": "^7.3 || ^8.0",
"ext-openssl": "*",
"ext-hash": "*",
"ext-simplexml": "*",
"mnapoli/silly": "^1.0",
"pear/ole": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10 || ^11",
"pear/pear-core-minimal": "*"
},
"autoload": {
"psr-4": {
"Nick\\SecureSpreadsheet\\": "src/"
}
},
"authors": [
{
"name": "Nick Huang",
"email": "nick80322@gmail.com"
}
],
"bin": [
"secure-spreadsheet"
]
}