Skip to content

Commit

Permalink
PHPC-2420: Initial composer.json for pie support (#1624)
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus authored Sep 4, 2024
1 parent 3d37eb5 commit a7091e8
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"name": "mongodb/mongodb-extension",
"type": "php-ext",
"keywords": ["database", "driver", "mongodb", "persistence"],
"homepage": "https://jira.mongodb.org/browse/PHPC",
"license": "Apache-2.0",
"authors": [
{ "name": "Andreas Braun", "email": "andreas.braun@mongodb.com" },
{ "name": "Jeremy Mikola", "email": "jmikola@gmail.com" },
{ "name": "Jérôme Tamarelle", "email": "jerome.tamarelle@mongodb.com" }
],
"require": {
"php": ">=7.4,<9",
"ext-date": "*",
"ext-json": "*"
},
"php-ext": {
"extension-name": "ext-mongodb",
"configure-options": [
{
"name": "enable-mongodb-developer-flags",
"description": "Enable developer flags",
"needs-value": true
},
{
"name": "enable-mongodb-coverage",
"description": "Enable code coverage",
"needs-value": true
},
{
"name": "with-mongodb-system-libs",
"description": "Use system libraries for libbson, libmongoc, and libmongocrypt",
"needs-value": true
},
{
"name": "with-mongodb-client-side-encryption",
"description": "Enable client-side encryption (auto/yes/no)",
"needs-value": true
},
{
"name": "with-mongodb-snappy",
"description": "Enable Snappy for compression (auto/yes/no)",
"needs-value": true
},
{
"name": "with-mongodb-zlib",
"description": "Enable zlib for compression (auto/system/bundled/no)",
"needs-value": true
},
{
"name": "with-mongodb-zstd",
"description": "Enable zstd for compression (auto/yes/no)",
"needs-value": true
},
{
"name": "with-mongodb-sasl",
"description": "Enable SASL for Kerberos authentication (auto/cyrus/no)",
"needs-value": true
},
{
"name": "with-mongodb-ssl",
"description": "Enable crypto and TLS (auto/openssl/libressl/darwin/no)",
"needs-value": true
},
{
"name": "enable-mongodb-crypto-system-profile",
"description": "Use system crypto profile (OpenSSL only) (yes/no)",
"needs-value": true
}
]
}
}

0 comments on commit a7091e8

Please sign in to comment.