Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ and use them in your project or submit them to be added to the library.
Currently included drivers are:

* [Redis](src/Driver/Redis/Redis.php)
* [Cassandra](src/Driver/Cassandra/Cassandra.php)
* [Mysqli](src/Driver/Mysqli/Mysqli.php)
* [OpenSearch](src/Driver/OpenSearch/OpenSearch.php)

Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"phpunit/phpunit": "^12.3"
},
"suggest": {
"ext-cassandra": "To use the Cassandra NoSQL driver",
"ext-mysqli": "To use the Mysqli Relational driver",
"ext-redis": "To use the Redis Cache driver",
"shyim/opensearch-php-dsl": "OpenSearch DSL query builder"
Expand Down
285 changes: 0 additions & 285 deletions src/Driver/Cassandra/Cassandra.php

This file was deleted.

20 changes: 0 additions & 20 deletions src/Driver/Cassandra/CassandraModelException.php

This file was deleted.

2 changes: 0 additions & 2 deletions src/Driver/DriverRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Aternos\Model\Driver;

use Aternos\Model\Driver\Cassandra\Cassandra;
use Aternos\Model\Driver\OpenSearch\OpenSearch;
use Aternos\Model\Driver\Mysqli\Mysqli;
use Aternos\Model\Driver\Redis\Redis;
Expand All @@ -20,7 +19,6 @@ class DriverRegistry implements DriverRegistryInterface
* @var array|string[]
*/
protected array $classes = [
Cassandra::ID => Cassandra::class,
OpenSearch::ID => OpenSearch::class,
Mysqli::ID => Mysqli::class,
Redis::ID => Redis::class,
Expand Down
Loading