FOSElasticaBundle/composer.json
Jeremy Mikola 2e7d2f2452 Support Symfony 2.2 PropertyAccess with BC for 2.1 (closes #218)
By abstracting the property access, we can easily support Symfony 2.1's Form component and 2.2's PropertyAccess component.

The PropertyAccessor service will be injected into transformers if it is available. Tests were modified to do the same, and expect the appropriate exception depending on which implementation is available.
2013-03-27 17:26:47 -04:00

40 lines
1.4 KiB
JSON

{
"name": "friendsofsymfony/elastica-bundle",
"type": "symfony-bundle",
"description": "Elasticsearch PHP integration for your Symfony2 project using Elastica",
"keywords": ["doctrine2", "elastica", "elasticsearch", "mongodb", "propel", "search"],
"homepage": "https://github.com/FriendsOfSymfony/FOSElasticaBundle",
"license": "MIT",
"authors": [
{ "name": "Thibault Duplessis", "email": "thibault.duplessis@gmail.com" },
{ "name": "Richard Miller", "email": "richard.miller@limethinking.co.uk" },
{ "name": "Jeremy Mikola", "email": "jmikola@gmail.com" }
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.1.0,<2.3.0-dev",
"symfony/console": ">=2.1.0,<2.3.0-dev",
"symfony/form": ">=2.1.0,<2.3.0-dev",
"ruflin/elastica": "0.19.8"
},
"require-dev":{
"doctrine/orm": ">=2.2,<2.5-dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"propel/propel1": "1.6.*",
"pagerfanta/pagerfanta": "1.0.*@dev",
"knplabs/knp-components": "1.2.*"
},
"suggest": {
"symfony/property-access": "2.2.*",
"doctrine/orm": ">=2.2,<2.5-dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"propel/propel1": "1.6.*",
"pagerfanta/pagerfanta": "1.0.*@dev",
"knplabs/knp-components": "1.2.*"
},
"autoload": {
"psr-0": { "FOS\\ElasticaBundle": "" }
},
"target-dir": "FOS/ElasticaBundle"
}