Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'composer/composer.json')
-rw-r--r--composer/composer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/composer/composer.json b/composer/composer.json
new file mode 100644
index 0000000..3e47522
--- /dev/null
+++ b/composer/composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "nextcloud/fulltextsearch",
+ "description": "Full text search framework for Nextcloud",
+ "minimum-stability": "stable",
+ "license": "agpl",
+ "config": {
+ "vendor-dir": ".",
+ "optimize-autoloader": true,
+ "classmap-authoritative": true,
+ "autoloader-suffix": "FullTextSearch"
+ },
+ "authors": [
+ {
+ "name": "Maxence Lange",
+ "email": "maxence@artificial-owl.com"
+ }
+ ],
+ "autoload": {
+ "psr-4": {
+ "OCA\\FullTextSearch\\": "../lib/"
+ }
+ },
+ "require": {
+ "daita/my-small-php-tools": "dev-master"
+ }
+}