| Current Path : /proc/thread-self/root/home/rtorresani/www/vendor/opensearch-project/opensearch-php/ |
| Current File : //proc/thread-self/root/home/rtorresani/www/vendor/opensearch-project/opensearch-php/composer.json |
{
"name": "opensearch-project/opensearch-php",
"description": "PHP Client for OpenSearch",
"keywords": ["search","client", "opensearch","elasticsearch"],
"type": "library",
"license": ["Apache-2.0", "LGPL-2.1-only"],
"authors": [
{
"name": "Elastic"
},
{
"name": "OpenSearch Contributors"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": ">=1.3.7",
"ext-curl": "*",
"ezimuel/ringphp": "^1.1.2",
"psr/log": "^1|^2"
},
"require-dev": {
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.3",
"symfony/finder": "~4.0"
},
"suggest": {
"monolog/monolog": "Allows for client-level logging and tracing"
},
"autoload": {
"psr-4": {
"OpenSearch\\": "src/OpenSearch/"
}
},
"autoload-dev": {
"psr-4": {
"OpenSearch\\Tests\\": "tests/",
"OpenSearch\\Util\\": "util/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"php-cs": [
"php-cs-fixer fix"
],
"phpstan": [
"phpstan analyse --no-progress"
],
"unit": [
"phpunit"
],
"integration": [
"phpunit -c phpunit-integration-tests.xml"
]
}
}