diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-05-13 09:49:26 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-05-13 09:50:36 +0200 |
commit | 002780d4c3c9d672c0488eed23b1a222e2c7cb65 (patch) | |
tree | 57e69b47f9001427cd705601fc2af8a924538228 /composer.json | |
parent | b177969ea60cfd49603f255c456600a89143cd9f (diff) | |
download | nextcloud-server-002780d4c3c9d672c0488eed23b1a222e2c7cb65.tar.gz nextcloud-server-002780d4c3c9d672c0488eed23b1a222e2c7cb65.zip |
Declare ext-json as dependency in composer.json
This makes phpstorm happy as it knows that the functions like
json_encode are available.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/composer.json b/composer.json index ee73b60f431..937df706202 100644 --- a/composer.json +++ b/composer.json @@ -11,6 +11,9 @@ "OCP\\": "lib/public" } }, + "require": { + "ext-json": "*" + }, "require-dev": { "jakub-onderka/php-parallel-lint": "^0.9.2", "jakub-onderka/php-console-highlighter": "^0.3.2", |