[PECL-CVS] [pecl-search_engine-solr] master: Add a composer.json to enable support for PIE
[email protected] (Birgir Haraldsson)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Date: 2024-12-04T15:23:25+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/64b5449c8feaecb40ffcd10202214c47302fd56c
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/64b5449c8feaecb40ffcd10202214c47302fd56c.diff
Add a composer.json to enable support for PIE
Changed paths:
A composer.json
Diff:
diff --git a/composer.json b/composer.json
new file mode 100644
index 00000000..3871add8
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,29 @@
+{
+ "name": "php-solr/php-solr",
+ "type": "php-ext",
+ "license": "PHP-3.01",
+ "description": "Apache Solr extension",
+ "require": {
+ "php": ">= 7.4,<8.5",
+ "ext-json": "*",
+ "ext-curl": "*",
+ "ext-libxml": "*"
+ },
+ "php-ext": {
+ "extension-name": "solr",
+ "configure-options": [
+ {
+ "name": "enable-solr",
+ "description": "Enable solr support"
+ },
+ {
+ "name": "enable-solr-debug",
+ "description": "Compile with solr in verbose mode"
+ },
+ {
+ "name": "enable-coverage",
+ "description": "Enable developer code coverage information"
+ }
+ ]
+ }
+}