eos / arango-db-3-connector-bundle
Symfony integration for eos/arango-db-3-connector
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 2
Open Issues: 3
Type:symfony-bundle
Requires
- php: >=7.2
- eos/arango-db-3-connector: ^1.0
- symfony/console: ^4.0
- symfony/framework-bundle: ^4.0
This package is auto-updated.
Last update: 2024-10-30 01:37:27 UTC
README
Symfony integration for eos/arango-db-3-connector.
Installation
composer req eos/arango-db-3-connector-bundle
Configuration
eos_arango_db_connector: servers: ['http://127.0.0.1:8529'] user: 'root' password: null database: 'your_database' collections: your_collection: type: 'document' # document|edge wait_for_sync: false # false is the default indices: your_index: type: 'hash' fields: ['id'] options: unique: true
Commands
These commands are available:
eos:arango-db:database:create
eos:arango-db:database:remove
eos:arango-db:collections:create
eos:arango-db:collections:remove
Service
The database is available for autowiring with the service id Eos\ArangoDBConnector\ArangoDBInterface
.