Skip to content

Commit

Permalink
Add a composer.json to enable support for PIE
Browse files Browse the repository at this point in the history
  • Loading branch information
bix0r committed Dec 4, 2024
1 parent 6991772 commit e390d98
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
}

0 comments on commit e390d98

Please sign in to comment.