├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── chromadb.php ├── phpunit.xml ├── src ├── ChromaServiceProvider.php ├── Concerns │ └── HasChromaCollection.php ├── Contracts │ └── ChromaModel.php ├── Facades │ └── ChromaDB.php └── Jobs │ ├── DeleteChromaCollectionItemJob.php │ └── UpdateChromaCollectionJob.php ├── tests ├── ChromaServiceProviderTest.php ├── Concerns │ └── HasChromaCollectionTest.php ├── Facades │ └── ChromaDBTest.php ├── Pest.php └── TestCase.php └── workbench ├── app ├── Models │ ├── .gitkeep │ └── TestModel.php └── Providers │ └── WorkbenchServiceProvider.php ├── database ├── factories │ └── .gitkeep ├── migrations │ ├── .gitkeep │ └── 2024_01_16_120226_create_test_models_table.php └── seeders │ ├── .gitkeep │ └── DatabaseSeeder.php ├── resources └── views │ └── .gitkeep └── routes ├── .gitkeep ├── api.php ├── console.php └── web.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/chromadb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/config/chromadb.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ChromaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/ChromaServiceProvider.php -------------------------------------------------------------------------------- /src/Concerns/HasChromaCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/Concerns/HasChromaCollection.php -------------------------------------------------------------------------------- /src/Contracts/ChromaModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/Contracts/ChromaModel.php -------------------------------------------------------------------------------- /src/Facades/ChromaDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/Facades/ChromaDB.php -------------------------------------------------------------------------------- /src/Jobs/DeleteChromaCollectionItemJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/Jobs/DeleteChromaCollectionItemJob.php -------------------------------------------------------------------------------- /src/Jobs/UpdateChromaCollectionJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/src/Jobs/UpdateChromaCollectionJob.php -------------------------------------------------------------------------------- /tests/ChromaServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/tests/ChromaServiceProviderTest.php -------------------------------------------------------------------------------- /tests/Concerns/HasChromaCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/tests/Concerns/HasChromaCollectionTest.php -------------------------------------------------------------------------------- /tests/Facades/ChromaDBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/tests/Facades/ChromaDBTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /workbench/app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/app/Models/TestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/app/Models/TestModel.php -------------------------------------------------------------------------------- /workbench/app/Providers/WorkbenchServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/app/Providers/WorkbenchServiceProvider.php -------------------------------------------------------------------------------- /workbench/database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/database/migrations/2024_01_16_120226_create_test_models_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/database/migrations/2024_01_16_120226_create_test_models_table.php -------------------------------------------------------------------------------- /workbench/database/seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /workbench/resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/routes/api.php -------------------------------------------------------------------------------- /workbench/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/routes/console.php -------------------------------------------------------------------------------- /workbench/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithKyrian/chromadb-laravel/HEAD/workbench/routes/web.php --------------------------------------------------------------------------------