123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "nick322/secure-spreadsheet",
- "description": "Encrypt and password protect sensitive XLSX files",
- "type": "library",
- "license": "MIT",
- "require": {
- "php": "^7.3 || ^7.4 || ^8.0 || ^8.1",
- "ext-openssl": "*",
- "ext-hash": "*",
- "ext-simplexml": "*",
- "mnapoli/silly": "^1.0",
- "phpunit/phpunit": "^9.5"
- },
- "require-dev": {
- "php": "^7.3 || ^7.4 || ^8.0 || ^8.1",
- "ext-openssl": "*",
- "ext-hash": "*"
- },
- "autoload": {
- "psr-4": {
- "Nick\\SecureSpreadsheet\\": "src/"
- }
- },
- "authors": [
- {
- "name": "Nick Huang",
- "email": "nick80322@gmail.com"
- }
- ],
- "bin": [
- "secure-spreadsheet"
- ]
- }
|