From 694425aeebfce7b9ceb5234401418280f132a8a9 Mon Sep 17 00:00:00 2001 From: Timon Bolier Date: Tue, 13 Feb 2018 11:43:25 +0100 Subject: [PATCH] Update composer information for packagist --- .editorconfig | 4 ++-- composer.json | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 892071b..9208166 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,6 +13,6 @@ indent_style = space indent_size = 4 # Matches the exact files -[{composer.json}] +[{composer.json,*.js}] indent_style = space -indent_size = 2 +indent_size = 4 diff --git a/composer.json b/composer.json index d99d65f..0938c41 100644 --- a/composer.json +++ b/composer.json @@ -2,12 +2,28 @@ "name": "tbolier/php-rethink-ql", "description": "A clean and solid RethinkDB driver for PHP.", "type": "library", + "license": "Apache-2.0", + "homepage": "https://github.com/tbolier/php-rethink-ql/", "authors": [ { "name": "Timon Bolier", "email": "timonb@gmail.com" } ], + "keywords": [ + "adapter", + "database", + "driver", + "rethinkdb", + "nosql", + "nosql-database", + "php", + "php-rethinkdb", + "php-rethinkdb-driver", + "rethinkdb-adapter", + "reql", + "rethinkdb-ql" + ], "minimum-stability": "dev", "require": { "psr/http-message": "^1.0@dev", @@ -24,5 +40,10 @@ "TBolier\\RethinkQL\\UnitTest\\": "test/unit/", "TBolier\\RethinkQL\\IntegrationTest\\": "test/integration/" } + }, + "support": { + "docs": "https://github.com/tbolier/php-rethink-ql/tree/master/docs/", + "issues": "https://github.com/tbolier/php-rethink-ql/issues/", + "source": "https://github.com/tbolier/php-rethink-ql/" } }