Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": ">= 8.1,<=8.4",
Copy link
Member

@remicollet remicollet Oct 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think composer.json and package.xml should be consistent.

So 7.4 to 8.4 for released version, but probably 7.4 to 8.5 for next patch version as build/test passes with 8.5.0RC2

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. I agree, it should be consistent. I will change this when I change the name.

Then we will remove support for older versions in a separate PR.

"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"
}
]
}
}
Loading