feat: implement database handlerImplement a database api to manage nodes and relationships in a "graph databaselike" implemented in sqlite.closes #1

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent 5aaacb10e3
commit b2d8dadcee
17 changed files with 963 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name,category,metadata
Laravel,web framework,"{""website"":""https://laravel.com"",""github"":""laravel/laravel"",""packagist"":""laravel/framework""}"
Symfony,web framework,"{""website"":""https://symfony.com"",""github"":""symfony/symfony"",""packagist"":""symfony/symfony""}"
Guzzle,http client,"{""website"":""http://guzzlephp.org"",""github"":""guzzle/guzzle"",""packagist"":""guzzle/guzzle""}"
PHPUnit,testing,"{""website"":""https://phpunit.de"",""github"":""sebastianbergmann/phpunit"",""packagist"":""phpunit/phpunit""}"
Composer,package manager,"{""website"":""https://getcomposer.org"",""github"":""composer/composer"",""type"":""tool""}"
1 name category metadata
2 Laravel web framework {"website":"https://laravel.com","github":"laravel/laravel","packagist":"laravel/framework"}
3 Symfony web framework {"website":"https://symfony.com","github":"symfony/symfony","packagist":"symfony/symfony"}
4 Guzzle http client {"website":"http://guzzlephp.org","github":"guzzle/guzzle","packagist":"guzzle/guzzle"}
5 PHPUnit testing {"website":"https://phpunit.de","github":"sebastianbergmann/phpunit","packagist":"phpunit/phpunit"}
6 Composer package manager {"website":"https://getcomposer.org","github":"composer/composer","type":"tool"}